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=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,e7e6e919cef50811 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-03-14 08:56:36 PST Newsgroups: comp.lang.ada Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!newsfeed.berkeley.edu!ucberkeley!netnews.com!xfer02.netnews.com!priapus.visi.com!news-out.visi.com!hermes.visi.com!uunet!ash.uu.net!xyzzy!nntp From: Jeffrey Carter Subject: Re: comparing gnat/Ada95 and g77 X-Nntp-Posting-Host: e246420.msc.az.boeing.com Content-Type: text/plain; charset=us-ascii Message-ID: <3C90D315.6E424CEE@boeing.com> Sender: nntp@news.boeing.com (Boeing NNTP News Access) Content-Transfer-Encoding: 7bit Organization: The Boeing Company X-Accept-Language: en References: <3c9081f5$1@pull.gecm.com> Mime-Version: 1.0 Date: Thu, 14 Mar 2002 16:43:01 GMT X-Mailer: Mozilla 4.73 [en]C-CCK-MCD Boeing Kit (WinNT; U) Xref: archiver1.google.com comp.lang.ada:21240 Date: 2002-03-14T16:43:01+00:00 List-Id: Preben Randhol wrote: > > After removing the IO things from the program the exection time when > from approx 19s to approx 5s. > > The fortran went from approx 15s to approx 4s. But if you eliminate the IO, then the following program is equivalent: procedure Test1 is -- null; begin -- Test1 null; end Test1; and takes much less than 5s to execute. -- Jeffrey Carter