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.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,e5a3abec221df39 X-Google-Attributes: gid103376,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII Path: g2news1.google.com!postnews.google.com!a70g2000hsh.googlegroups.com!not-for-mail From: =?ISO-8859-1?Q?Santiago_Urue=F1a?= Newsgroups: comp.lang.ada Subject: Re: Possible compiler bug with this simple program Date: Tue, 2 Sep 2008 15:10:36 -0700 (PDT) Organization: http://groups.google.com Message-ID: <1cdfe9b3-047b-404d-86f3-6956b9b242ad@a70g2000hsh.googlegroups.com> References: <1edc3682-855f-405b-8348-72b423377b1a@i20g2000prf.googlegroups.com> <891f5fdc-195e-47a3-a269-04d1d9234b97@m3g2000hsc.googlegroups.com> NNTP-Posting-Host: 81.35.5.246 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1220393436 22188 127.0.0.1 (2 Sep 2008 22:10:36 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 2 Sep 2008 22:10:36 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: a70g2000hsh.googlegroups.com; posting-host=81.35.5.246; posting-account=Lcd2wAoAAAADW2SqWO5AWY55Q-jjpVWU User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; es-ES; rv:1.9.0.1) Gecko/2008072820 Firefox/3.0.1,gzip(gfe),gzip(gfe) Xref: g2news1.google.com comp.lang.ada:1882 Date: 2008-09-02T15:10:36-07:00 List-Id: > And that would look something like this? > > for Long_Float'Alignment use 64; > for Real_Vector'Alignment use ???; > Note that 'Size is specified in _bits_ but 'Alignment is in _bytes_ (well, in storage units), so I assume that you really mean: for Long_Float'Size use 64; -- bits for Long_Float'Alignment use 8; -- bytes Cheers, -- Santiago Urue=F1a-Pascual