From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 60355 invoked by alias); 19 Nov 2015 20:04:41 -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 60333 invoked by uid 89); 19 Nov 2015 20:04:40 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.7 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 19 Nov 2015 20:04:37 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (Postfix) with ESMTPS id 99B8FC0BFBA6 for ; Thu, 19 Nov 2015 20:04:36 +0000 (UTC) Received: from [10.10.116.26] (ovpn-116-26.rdu2.redhat.com [10.10.116.26]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id tAJK4Zqq013055; Thu, 19 Nov 2015 15:04:36 -0500 Subject: Re: [PATCH] Fix ICE with mangling aliases (PR c++/67354, take 2) To: Jakub Jelinek References: <20151118085216.GJ5675@tucnak.redhat.com> <564CEC0D.9090106@redhat.com> <20151119124042.GW5675@tucnak.redhat.com> Cc: gcc-patches@gcc.gnu.org From: Jason Merrill Message-ID: <564E2B53.5050602@redhat.com> Date: Thu, 19 Nov 2015 20:04:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <20151119124042.GW5675@tucnak.redhat.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2015-11/txt/msg02417.txt.bz2 On 11/19/2015 07:40 AM, Jakub Jelinek wrote: > @@ -4502,6 +4509,7 @@ c_parse_final_cleanups (void) > > locus_at_end_of_parsing = input_location; > at_eof = 1; > + defer_mangling_aliases = false; Let's clear this in generate_mangling_aliases rather than here. OK with that change. Jason