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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,b53c5375e9445ca,start X-Google-Attributes: gid103376,public From: Pascal Ledru Subject: GNAT and Ariane 5 crash Date: 1996/08/02 Message-ID: <32020E13.41C6@MSMAIL3.HAC.COM>#1/1 X-Deja-AN: 171569549 content-type: text/plain; charset=us-ascii organization: Aerospatiale, Inc mime-version: 1.0 newsgroups: comp.lang.ada x-mailer: Mozilla 2.01S (X11; I; IRIX 5.3 IP22) Date: 1996-08-02T00:00:00+00:00 List-Id: The following code: with Text_IO; use Text_IO; procedure test is F : Float; I : Integer; begin F := 1.0e31; I := Integer( F ); Put_Line( Integer'Image(I) ); end; displays 2147483647 with GNAT (3.04 on SGI) while it displays (correctly I think) numeric_error with another compiler.