diff options
author | Bernd Schmidt <bernds@codesourcery.com> | 2011-04-01 17:35:13 +0000 |
---|---|---|
committer | Bernd Schmidt <bernds@gcc.gnu.org> | 2011-04-01 17:35:13 +0000 |
commit | 722279e41f7d76fc4b3ea8cca0d542c3d5779db2 (patch) | |
tree | 532d37509c7c76c048160bbd1881315d0f778614 /gcc/dwarf2out.h | |
parent | 1ca1dad5f178ee1d9d7a611254728b7748b4eb08 (diff) | |
download | gcc-722279e41f7d76fc4b3ea8cca0d542c3d5779db2.zip gcc-722279e41f7d76fc4b3ea8cca0d542c3d5779db2.tar.gz gcc-722279e41f7d76fc4b3ea8cca0d542c3d5779db2.tar.bz2 |
dwarf2out.h (dwarf2out_frame_debug_init): Declare.
* dwarf2out.h (dwarf2out_frame_debug_init): Declare.
* dwarf2out.c (dwarf2out_frame_debug_init): New function, broken
out of ...
(dwarf2out_frame_debug): ... here. Don't handle a NULL argument.
* final.c (final_start_function): Call the new function rather
than using a NULL argument for dwarf2out_frame_debug.
From-SVN: r171839
Diffstat (limited to 'gcc/dwarf2out.h')
-rw-r--r-- | gcc/dwarf2out.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/dwarf2out.h b/gcc/dwarf2out.h index d5b958d..7f5ac13 100644 --- a/gcc/dwarf2out.h +++ b/gcc/dwarf2out.h @@ -1,5 +1,5 @@ /* dwarf2out.h - Various declarations for functions found in dwarf2out.c - Copyright (C) 1998, 1999, 2000, 2003, 2007, 2010 + Copyright (C) 1998, 1999, 2000, 2003, 2007, 2010, 2011 Free Software Foundation, Inc. This file is part of GCC. @@ -20,6 +20,7 @@ along with GCC; see the file COPYING3. If not see extern void dwarf2out_decl (tree); extern void dwarf2out_frame_debug (rtx, bool); +extern void dwarf2out_frame_debug_init (void); extern void dwarf2out_cfi_begin_epilogue (rtx); extern void dwarf2out_frame_debug_restore_state (void); extern void dwarf2out_flush_queued_reg_saves (void); |