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,2d09fa6592c24a21 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-03-11 08:15:44 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!canoe.uoregon.edu!hammer.uoregon.edu!skates!not-for-mail From: Stephen Leake Newsgroups: comp.lang.ada Subject: Re: I think - it's a bug... Date: 11 Mar 2002 11:13:29 -0500 Organization: NASA Goddard Space Flight Center Message-ID: References: <3C8B184D.49214059@yahoo.com> <3C8C41A8.B5D96800@yahoo.com> NNTP-Posting-Host: anarres.gsfc.nasa.gov Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: skates.gsfc.nasa.gov 1015863534 27677 128.183.220.71 (11 Mar 2002 16:18:54 GMT) X-Complaints-To: dscoggin@cne-odin.gsfc.nasa.gov NNTP-Posting-Date: 11 Mar 2002 16:18:54 GMT User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 Xref: archiver1.google.com comp.lang.ada:21063 Date: 2002-03-11T16:18:54+00:00 List-Id: Anatoly Chernyshev writes: > That's true, but still, why inserting of "put_line (float'image(1.0-(z/b)));" > influences the behaviour of the program so much. > Beyound that, I've got similar things with z=0.1 and 0.25. They were solved > though, by using different optomization levels (-O, -O2...). Since that is the _only_ place you have Text_IO, if you leave out the "put_line", Text_IO is not linked in. Then you don't need the Microsoft runtime library. The Microsoft runtime library sets the FPU to the "wrong" mode. If you Use GNAT.Float_Control.Reset, the presence of "put_line" will no longer matter. -- -- Stephe