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/30 Message-ID: #1/1 X-Deja-AN: 171235377 references: <4tdp24$5h1@news.pacifier.com> <31FE0C01.302F@lmtas.lmco.com> organization: Courant Institute of Mathematical Sciences newsgroups: comp.lang.ada Date: 1996-07-30T00:00:00+00:00 List-Id: Ken Garlington said (in partial jest, I realize) Because it's not: Bits_32 : constant := 32; type anInt32 is range -(2**(Bits_32-1)) .. 2**(Bits_32-1)-1; But in fact Bits_32 is a horrible name. I like named constants, but I don't like junk names. The above would be reasonable if the name Bits_32 were something like Word_Length_In_Bits.