This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH] Dwarf2out end prologue/begin epilogue for IVMS (3rd try refresh)
- From: Jakub Jelinek <jakub at redhat dot com>
- To: Richard Henderson <rth at redhat dot com>
- Cc: Douglas B Rupp <rupp at gnat dot com>, Nick Clifton <nickc at redhat dot com>, gcc-patches at gcc dot gnu dot org
- Date: Thu, 17 Jun 2010 21:18:05 +0200
- Subject: Re: [PATCH] Dwarf2out end prologue/begin epilogue for IVMS (3rd try refresh)
- 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>
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
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 <jakub@redhat.com>
PR debug/44572
* dwarf2out.c (dwarf2out_debug_hooks): Add entry for begin_epilogue
hook.
--- 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 */
Jakub