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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,8de7eedad50552f1 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news4.google.com!news.glorb.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local01.nntp.dca.giganews.com!nntp.comcast.com!news.comcast.com.POSTED!not-for-mail NNTP-Posting-Date: Mon, 21 Mar 2005 06:20:06 -0600 Date: Mon, 21 Mar 2005 07:20:34 -0500 From: Jeff C User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Ada bench References: <87vf7n5njs.fsf@code-hal.de> <87u0n6mzas.fsf@code-hal.de> <2huslr9uto15$.nbw7z2uaceua.dlg@40tude.net> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Message-ID: NNTP-Posting-Host: 24.147.74.171 X-Trace: sv3-OOqx5MO3ZMGpAnTLMjMdba6iNdMunkynqtYyzkpDuIh83+wJEt/Am23KA8yDfKVDXYGEXbfbcAgeDxW!qeWaUNTCALRAGVWPwNRVR2DhkyjSPFetwrnxs9d7mFZPxsYA8KYopTIGY4N+zg== X-Complaints-To: abuse@comcast.net X-DMCA-Complaints-To: dmca@comcast.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.31 Xref: g2news1.google.com comp.lang.ada:9667 Date: 2005-03-21T07:20:34-05:00 List-Id: Ed Falis wrote: > You neglected two things: > > 1. suppress checks: -gnatp > 2. Use the end of file function instead of the exception. The question is do the requirements of this benchmark require that you avoid exceptions. Generally you need to have an exception case anyway (for any non-trivial file) to handle files with bad termination conditions. It looks to me like the problem definition here would encourage that you do this "normal" processing without relying exceptions for the termination case. So I tend to agree with Ed.