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,ad4aec717fd8556e X-Google-Attributes: gid103376,public From: bobduff@world.std.com (Robert A Duff) Subject: Re: 'size attribute inheritance Date: 1997/08/17 Message-ID: #1/1 X-Deja-AN: 265679959 References: <33ECF679.4B5D@lmco.com> <33F670EF.4F65@flash.net> Organization: The World Public Access UNIX, Brookline, MA Newsgroups: comp.lang.ada Date: 1997-08-17T00:00:00+00:00 List-Id: In article <33F670EF.4F65@flash.net>, Ken Garlington wrote: >I suppose this is technically true, but couldn't the effect of >pragam Normalize_Scalars, when combined with 'Valid and/or range >checking, be informally described as checking for uninitialized >variables? Sort of, but you have to remember that (1) the check doesn't happen when you read the uninit var -- it happens *if* and when you use it in some way that requires a range check, and (2) it only works if there are enough bits to store the out-of-range value (it probably won't work for a variable of type Character or Integer, for example). - Bob