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: tmoran@bix.com Subject: Re: Prevalence of Compilers for Which Integer'Size < 32? Date: 1996/07/28 Message-ID: <4tem5o$qv3@news2.delphi.com>#1/1 X-Deja-AN: 170524328 organization: Delphi Internet Services Corporation newsgroups: comp.lang.ada Date: 1996-07-28T00:00:00+00:00 List-Id: > Suddenly, I see something that will raise > Constraint_Error if a compiler's Integer'Size is less than 32. > So, how prevalent are such compilers? Is it really something that one > ought to consider when implementing components that are candidates for > reuse? Is there any reason you must use Integer rather than a type ... is range ... that fits the problem? The RR compiler I still use for bare 16 bit DOS targets has, not surprisingly, a 16 bit Integer. Don't know about other compilers with that target. (Are there any?)