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=0.2 required=5.0 tests=BAYES_00,INVALID_MSGID, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,fd398ca223dbbfd6 X-Google-Attributes: gid103376,public From: Florian Weimer Subject: Re: 'Size (novice question) Date: 2000/02/22 Message-ID: <87d7ppkm9k.fsf@deneb.cygnus.argh.org>#1/1 X-Deja-AN: 588749636 References: <38ACA68D.CEA7E03F@interact.net.au> <87aekxlz33.fsf@deneb.cygnus.argh.org> Mail-Copies-To: never Content-Type: text/plain; charset=us-ascii X-Complaints-To: abuse@cygnus.argh.org X-Trace: deneb.cygnus.argh.org 951251783 3861 192.168.1.2 (22 Feb 2000 20:36:23 GMT) Organization: Penguin on board User-Agent: Gnus/5.0804 (Gnus v5.8.4) Emacs/20.4 Mime-Version: 1.0 Reply-To: Florian Weimer NNTP-Posting-Date: 22 Feb 2000 20:36:23 GMT Newsgroups: comp.lang.ada Date: 2000-02-22T20:36:23+00:00 List-Id: lutz@iks-jena.de (Lutz Donnerhacke) writes: > * Florian Weimer wrote: > > Put ("Boolean'Size (type): "); Put (Boolean'Size); New_Line; > > Put ("Boolean'Size (variable): "); Put (X'Size); New_Line; > > > >Almost no compiler will print 1 twice because on most architectures, > >access to individual bits is expensive in both time and space when > >compared to word or even octet access. > > But the following code can not use compressed variables: Yes, that's correct. But, in my eyes, your example is pretty pointless. ;) Would you mind posting another one?