From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9588 invoked by alias); 6 Sep 2013 16:02:03 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 9579 invoked by uid 89); 6 Sep 2013 16:02:03 -0000 Received: from userp1040.oracle.com (HELO userp1040.oracle.com) (156.151.31.81) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Fri, 06 Sep 2013 16:02:03 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-8.0 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL,RP_MATCHES_RCVD,SPF_PASS,UNPARSEABLE_RELAY autolearn=ham version=3.3.2 X-HELO: userp1040.oracle.com Received: from ucsinet22.oracle.com (ucsinet22.oracle.com [156.151.31.94]) by userp1040.oracle.com (Sentrion-MTA-4.3.1/Sentrion-MTA-4.3.1) with ESMTP id r86G1vZD007451 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 6 Sep 2013 16:01:58 GMT Received: from aserz7022.oracle.com (aserz7022.oracle.com [141.146.126.231]) by ucsinet22.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r86G1uXY028057 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 6 Sep 2013 16:01:57 GMT Received: from abhmt103.oracle.com (abhmt103.oracle.com [141.146.116.55]) by aserz7022.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r86G1uNY021883; Fri, 6 Sep 2013 16:01:56 GMT Received: from poldo4.casa (/79.36.30.24) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Fri, 06 Sep 2013 09:01:56 -0700 Message-ID: <5229FC71.2090709@oracle.com> Date: Fri, 06 Sep 2013 16:02:00 -0000 From: Paolo Carlini User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130801 Thunderbird/17.0.8 MIME-Version: 1.0 To: Jan Hubicka CC: Richard Biener , Bernd Schmidt , gcc-patches@gcc.gnu.org, jason@redhat.com Subject: Re: [RFC] Fix for PR58201 References: <20130904160409.GF20687@kam.mff.cuni.cz> <52276493.9070706@codesourcery.com> <20130904170918.GI20687@kam.mff.cuni.cz> <20130905230516.GB14285@kam.mff.cuni.cz> In-Reply-To: <20130905230516.GB14285@kam.mff.cuni.cz> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2013-09/txt/msg00425.txt.bz2 Hi Honza, On 09/06/2013 01:05 AM, Jan Hubicka wrote: > Hi, > this is the patch I commited after testing on x86_64-linux. > > Honza > > Index: ChangeLog > =================================================================== > *** ChangeLog (revision 202271) > --- ChangeLog (working copy) > *************** > *** 1,3 **** > --- 1,9 ---- > + 2013-09-04 Jan Hubicka > + > + PR middle-end/58201 > + * cgraphunit.c (analyze_functions): Clear AUX fields > + after processing; initialize assembler name has. > + I checked and double checked and with this commit a C++ test regressed: FAIL: g++.dg/template/cond2.C -std=gnu++98 (test for warnings, line 9) FAIL: g++.dg/template/cond2.C -std=gnu++11 (test for warnings, line 9) In practice we emit a message off by one line, line 10 instead of the correct line 9. Is it possible that you are clearing too much, so to speak? After the recent breakages, up to date testresults are arriving only now on gcc-testresults confirming my finding, for example Andreas Schwab already posted a couple. Thanks! Paolo.