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,d7ae8269a4ecf7c4 X-Google-Attributes: gid103376,public From: dewar@cs.nyu.edu (Robert Dewar) Subject: Re: Prevalence of Compilers for Which Integer'Size < 32? Date: 1996/07/28 Message-ID: #1/1 X-Deja-AN: 170966307 references: <4tdp24$5h1@news.pacifier.com> organization: Courant Institute of Mathematical Sciences newsgroups: comp.lang.ada Date: 1996-07-28T00:00:00+00:00 List-Id: iBob asks: type Seconds_In_A_Day is range 0 .. 60*60*24; (Why does everybody in this thread like literals so much?) because it is much easier to see that 86_400 is bigger than 32767 than it is to see that 60*60*24 is bigger than 2**15-1 :-) P.S. Bob is right, all versions of GNAT support 64 bit integers, this is true even if the architecture has limited support for such integers (appropriate software routines are used if necessary).