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,d2c23a44c4c8fd6b X-Google-Attributes: gid103376,public From: dewar@merv.cs.nyu.edu (Robert Dewar) Subject: Re: fixed point types over an interface Date: 1997/02/07 Message-ID: #1/1 X-Deja-AN: 215272924 references: <32FBB550.41C67EA6@efogm.msd.ray.com> organization: New York University newsgroups: comp.lang.ada Date: 1997-02-07T00:00:00+00:00 List-Id: Allen Krell said <> The answer for both Ada 83 and Ada 95 is certainly not. As with all data in the absence of rep clauses, there is lots of freedom for a compiler to decide how to store the data. In particular for fixed-point some compilers will use the largest Small possible, and others will use the smallest Small possible. To pin this down, you need to use a Small clause and a Size clause, then you should be pretty safe relying on the result, although one can imagine compilers doing weird things.