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.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,b30bd69fa8f63cb2 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-06-16 18:30:12 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!sn-xit-03!sn-xit-01!sn-post-01!supernews.com!corp.supernews.com!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: Replacement for Text_IO? (was Re: C bug of the day) Date: Mon, 16 Jun 2003 20:31:22 -0500 Organization: Posted via Supernews, http://www.supernews.com Message-ID: References: <1054751321.434656@master.nyc.kbcfp.com> <20030611114948.00000bcc._elh_@_terma_._com_> <20030611125000.000018b5._elh_@_terma_._com_> <3EEE464A.D48A8E2D@somewhere.nil> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Newsreader: Microsoft Outlook Express 4.72.3612.1700 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3719.2500 X-Complaints-To: abuse@supernews.com Xref: archiver1.google.com comp.lang.ada:39303 Date: 2003-06-16T20:31:22-05:00 List-Id: Gautier Write-only wrote in message <3EEE464A.D48A8E2D@somewhere.nil>... >Dale Stanbrough: >> as well as moving the generic I/O packages into child packages. > >It is an aesthetic issue (although, who cares ?), not a performance >one... Do such non-instanciated generic sub-packages even appear in >the machine-code in object files, on any compilation system ? They do if they were compiled for generic code sharing. And those packages are the best reason for generic code sharing (they're a lot more likely to be instantiated multiple times in a program than some user generic). So, they do have a code footprint in Janus/Ada, and I suspect as well in some other compilers. Randy.