From patchwork Thu Jun 17 19:18:05 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jakub Jelinek X-Patchwork-Id: 56085 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id AD512B7D8B for ; Fri, 18 Jun 2010 05:17:58 +1000 (EST) Received: (qmail 12739 invoked by alias); 17 Jun 2010 19:17:56 -0000 Received: (qmail 12731 invoked by uid 22791); 17 Jun 2010 19:17:56 -0000 X-SWARE-Spam-Status: No, hits=-6.0 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_HI, SPF_HELO_PASS, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 17 Jun 2010 19:17:50 +0000 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o5HJHnrq008199 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 17 Jun 2010 15:17:49 -0400 Received: from tyan-ft48-01.lab.bos.redhat.com (tyan-ft48-01.lab.bos.redhat.com [10.16.42.4]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o5HJHmHc003450 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 17 Jun 2010 15:17:48 -0400 Received: from tyan-ft48-01.lab.bos.redhat.com (tyan-ft48-01.lab.bos.redhat.com [127.0.0.1]) by tyan-ft48-01.lab.bos.redhat.com (8.14.4/8.14.4) with ESMTP id o5HJI5pf001899; Thu, 17 Jun 2010 21:18:05 +0200 Received: (from jakub@localhost) by tyan-ft48-01.lab.bos.redhat.com (8.14.4/8.14.4/Submit) id o5HJI5VQ001897; Thu, 17 Jun 2010 21:18:05 +0200 Date: Thu, 17 Jun 2010 21:18:05 +0200 From: Jakub Jelinek To: Richard Henderson Cc: Douglas B Rupp , Nick Clifton , gcc-patches@gcc.gnu.org Subject: Re: [PATCH] Dwarf2out end prologue/begin epilogue for IVMS (3rd try refresh) Message-ID: <20100617191805.GB7811@tyan-ft48-01.lab.bos.redhat.com> Reply-To: Jakub Jelinek References: <4AA13393.8070400@redhat.com> <4AA8817B.6040903@gnat.com> <4AA9342E.7040609@redhat.com> <4AE51AC0.2050000@gnat.com> <4AE5C08C.3080807@redhat.com> <4AE8A27F.9010301@gnat.com> <4AF056E9.1050309@redhat.com> <4C0805FD.6020609@gnat.com> <4C17C76A.3040902@gnat.com> <4C17CD04.6050003@redhat.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <4C17CD04.6050003@redhat.com> User-Agent: Mutt/1.5.20 (2009-12-10) X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org On Tue, Jun 15, 2010 at 11:57:08AM -0700, Richard Henderson wrote: > On 06/15/2010 11:33 AM, Douglas B Rupp wrote: > > Friendly ping. > > --Doug > > > > Douglas B Rupp wrote: > >> Richard Henderson wrote: > >>> Otherwise ok, pending @slotcount approval on the binutils side. > >> > >> @slotcount has been approved and checked into binutils, but it's been > >> several months, so I thought a fresh approval might be good. Please > >> find attached. > >> > >> OK to commit? > > Yes, this is still ok. The patch didn't update the second dwarf2_debug_hooks (!DWARF2_DEBUGGING_INFO) in dwarf2out.c, fixed thusly, committed as obvious. 2010-06-17 Jakub Jelinek PR debug/44572 * dwarf2out.c (dwarf2out_debug_hooks): Add entry for begin_epilogue hook. Jakub --- gcc/dwarf2out.c.jj 2010-06-17 09:48:51.000000000 +0200 +++ gcc/dwarf2out.c 2010-06-17 21:10:41.000000000 +0200 @@ -22408,6 +22408,7 @@ const struct gcc_debug_hooks dwarf2_debu 0, /* source_line */ 0, /* begin_prologue */ 0, /* end_prologue */ + 0, /* begin_epilogue */ 0, /* end_epilogue */ 0, /* begin_function */ 0, /* end_function */