From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.4 required=5.0 tests=AC_FROM_MANY_DOTS,BAYES_00 autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,b99897135d6631cc X-Google-Attributes: gid103376,public Path: g2news1.google.com!news1.google.com!news.glorb.com!border1.nntp.dca.giganews.com!border2.nntp.dca.giganews.com!nntp.giganews.com!cyclone1.gnilink.net!spamkiller2.gnilink.net!gnilink.net!nwrdny01.gnilink.net.POSTED!0f19ed38!not-for-mail From: "Frank J. Lhota" Newsgroups: comp.lang.ada References: <40d15023$1_1@baen1673807.greenlnk.net> <40d69121$1_1@baen1673807.greenlnk.net> <1088086179.73158@master.nyc.kbcfp.com> Subject: Re: memory management and productivity X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1409 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Message-ID: Date: Thu, 24 Jun 2004 19:58:06 GMT NNTP-Posting-Host: 151.203.203.234 X-Complaints-To: abuse@verizon.net X-Trace: nwrdny01.gnilink.net 1088107086 151.203.203.234 (Thu, 24 Jun 2004 15:58:06 EDT) NNTP-Posting-Date: Thu, 24 Jun 2004 15:58:06 EDT Xref: g2news1.google.com comp.lang.ada:1862 Date: 2004-06-24T19:58:06+00:00 List-Id: "Hyman Rosen" wrote in message news:1088086179.73158@master.nyc.kbcfp.com... > I prefer to manage registers according to the needs of my algorithms and > applications, rather than letting some unknown algorithm attempt to do it > for me. That's why I'll never use FORTRAN! LOL! BTW are you writing FORTRAN in all caps for emphasis or to stick with the 1960's programming language naming conventions? A side note: FORTRAN I (three revisions before the widely adapted FORTRAN IV) did have a REGISTER declaration, used in much the same way as the "register" keyword in C/C++. It was used to indicate a variable that was so commonly used that it should be implemented as a register. The FORTRAN 'REGISTER' declaration was dropped after version 1, only to surface again in other languages.