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/final.c | |
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/final.c')
-rw-r--r-- | gcc/final.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/final.c b/gcc/final.c index 8296169..cc7234c 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -1561,7 +1561,7 @@ final_start_function (rtx first ATTRIBUTE_UNUSED, FILE *file, #if defined (HAVE_prologue) if (dwarf2out_do_frame ()) - dwarf2out_frame_debug (NULL_RTX, false); + dwarf2out_frame_debug_init (); #endif /* If debugging, assign block numbers to all of the blocks in this |