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.4 required=5.0 tests=BAYES_00,FORGED_MUA_MOZILLA autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,4ecd0afd2a2401e1 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.122.199 with SMTP id lu7mr2490638pbb.1.1325091005610; Wed, 28 Dec 2011 08:50:05 -0800 (PST) Path: lh20ni74332pbb.0!nntp.google.com!news1.google.com!news3.google.com!fu-berlin.de!newsfeed.arcor.de!newsspool4.arcor-online.net!news.arcor.de.POSTED!not-for-mail Date: Wed, 28 Dec 2011 17:49:53 +0100 From: Georg Bauhaus User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:8.0) Gecko/20111105 Thunderbird/8.0 MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Strange GNAT compiler warning References: In-Reply-To: Message-ID: <4efb48b1$0$6558$9b4e6d93@newsspool4.arcor-online.net> Organization: Arcor NNTP-Posting-Date: 28 Dec 2011 17:49:53 CET NNTP-Posting-Host: e24f43eb.newsspool4.arcor-online.net X-Trace: DXC=j;;c0Y@QloAE4ZB2flKORA4IUKJLh>_cHTX3jMQbZbdHG>:LC X-Complaints-To: usenet-abuse@arcor.de Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Date: 2011-12-28T17:49:53+01:00 List-Id: On 28.12.11 15:37, Jan Andres wrote: > package Strange_Warning is > type Foo is limited interface; > type Bar is new Foo with null record; > end Strange_Warning; -Wall is a GCC option made for front ends to languages other than Ada, in GCC. Use -gnatwa instead. Guessing, though, there are occurrences of F and C in what GNAT generates as sources from the internal tree, with -gnatdg. F and C are out mode parameters that seem to be related to primitive operations. As said, just a wild guess.