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=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI autolearn=unavailable autolearn_force=no version=3.4.4 X-Google-Thread: 103376,7767a311e01e1cd X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news3.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!newsfeed00.sul.t-online.de!t-online.de!feeder.news-service.com!proxad.net!cleanfeed2-b.proxad.net!nnrp13-1.free.fr!not-for-mail Return-Path: X-Greylist: delayed 3608 seconds by postgrey-1.24 at green; Mon, 23 Oct 2006 15:47:39 CEST Date: Mon, 23 Oct 2006 14:46:55 +0200 From: "Grein, Christoph (Fa. ESG)" Subject: AW: GNAT compiler switches and optimization To: Warner BRUNS , comp.lang.ada@ada-france.org MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft Exchange V6.5 Content-Type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT Content-class: urn:content-classes:message Thread-topic: GNAT compiler switches and optimization Thread-index: Acb2oHaWX8tfC5qTR1GfjSk3RErelAAABRZg X-MS-Has-Attach: X-MS-TNEF-Correlator: X-OriginalArrivalTime: 23 Oct 2006 12:46:56.0123 (UTC) FILETIME=[5284A4B0:01C6F6A1] X-Virus-Scanned: amavisd-new at ada-france.org X-BeenThere: comp.lang.ada@ada-france.org X-Mailman-Version: 2.1.9rc1 Precedence: list List-Id: "Gateway to the comp.lang.ada Usenet newsgroup" List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.ada Message-ID: X-Leafnode-NNTP-Posting-Host: 88.191.17.134 Organization: Guest of ProXad - France NNTP-Posting-Date: 23 Oct 2006 15:50:01 MEST NNTP-Posting-Host: 88.191.14.223 X-Trace: 1161611401 news-2.free.fr 9981 88.191.14.223:35577 X-Complaints-To: abuse@proxad.net Xref: g2news2.google.com comp.lang.ada:7162 Date: 2006-10-23T15:50:01+02:00 Warner BRUNS claimed: > A problem with Ada is that the memory layout of a twodimensional array is > not specified in the Ada Standard. That's wrong: Ada is row-first order (1, 1) (1, 2) etc., Fortran specifies column-first (1, 2) (2, 1) etc. This is what the pragma Convention is for.