From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 130152 invoked by alias); 1 Jun 2015 08:03:21 -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 130140 invoked by uid 89); 1 Jun 2015 08:03:20 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-oi0-f44.google.com Received: from mail-oi0-f44.google.com (HELO mail-oi0-f44.google.com) (209.85.218.44) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Mon, 01 Jun 2015 08:03:19 +0000 Received: by oiww2 with SMTP id w2so95570707oiw.0 for ; Mon, 01 Jun 2015 01:03:18 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.202.172.16 with SMTP id v16mr8013636oie.51.1433145798031; Mon, 01 Jun 2015 01:03:18 -0700 (PDT) Received: by 10.76.115.167 with HTTP; Mon, 1 Jun 2015 01:03:17 -0700 (PDT) In-Reply-To: <556B7132.7010504@redhat.com> References: <554C060F.6000609@redhat.com> <555CAD35.5040304@redhat.com> <5565BB13.6040205@redhat.com> <5567643C.1020306@redhat.com> <55677C05.6040302@redhat.com> <5568B32A.1010100@redhat.com> <78B564EA-B9C4-4351-BFD0-9C78EA4C2528@gmail.com> <5568BF0A.7070903@redhat.com> <556A5B43.7050105@redhat.com> <556B7132.7010504@redhat.com> Date: Mon, 01 Jun 2015 08:03:00 -0000 Message-ID: Subject: Re: [patch 10/10] debug-early merge: compiler proper From: Richard Biener To: Jason Merrill Cc: Aldy Hernandez , Jan Hubicka , gcc-patches Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2015-06/txt/msg00007.txt.bz2 On Sun, May 31, 2015 at 10:38 PM, Jason Merrill wrote: > On 05/30/2015 08:52 PM, Aldy Hernandez wrote: >> >> On 05/29/2015 03:33 PM, Jason Merrill wrote: >>> >>> On 05/29/2015 03:26 PM, Richard Biener wrote: >>>> >>>> ISTR I had to mark the gimple reg used for the bound as >>>> non-DECL_IGNORED for the LTO stuff. >>> >>> >>> Let's go with that, then. >> >> >> Well, I did play around with that option originally, but temporaries do >> not end up in the symbol table, so we won't see them to feed them to >> late_global_decl. > > > The temporary has function scope, so I don't see why that would be an issue. Yeah, we should walk it via the function_decl hook on the containing function. Richard. > Jason >