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 Path: border1.nntp.dca1.giganews.com!nntp.giganews.com!usenet.blueworldhosting.com!feeder01.blueworldhosting.com!feeder.erje.net!eu.feeder.erje.net!news.swapon.de!eternal-september.org!feeder.eternal-september.org!mx02.eternal-september.org!.POSTED!not-for-mail From: =?UTF-8?B?QmrDtnJuIEx1bmRpbg==?= Newsgroups: comp.lang.ada Subject: Re: Size of linked program increasing with new version of GNAT. Date: Tue, 30 Dec 2014 16:21:14 +0100 Organization: A noiseless patient Spider Message-ID: References: <7f38a07d-3f73-432c-8647-e3a7dcf43637@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Date: Tue, 30 Dec 2014 15:20:59 +0000 (UTC) Injection-Info: mx02.eternal-september.org; posting-host="c96fa844c4210e06199c84d92fa3d8d1"; logging-data="15800"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18WbaIl2EsRjKel+VgCO3+8" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Icedove/31.2.0 In-Reply-To: Cancel-Lock: sha1:lZ4Wme3tfGvWD1ove+oGP1UnUhs= Xref: number.nntp.giganews.com comp.lang.ada:191598 Date: 2014-12-30T16:21:14+01:00 List-Id: On 2014-12-30 00:56, Randy Brukardt wrote: > But still, who cares? Im my experience with a variety of Ada compilers, > there's no correlation between the minimum size of a program and the size of > real programs. Indeed. For databases, the equivalent test is 'select count('a') from some_table;' It is not very useful as a measurement either, some dbs actually traverse the table, and some has a cached counter. But what you really want is good performance (whatever that is) for real applications, not a constructed example that has little or no relevance. -- Björn