diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2008-01-16 12:10:27 +0100 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2008-01-16 12:10:27 +0100 |
commit | a4b6974e6b2a85f7fe9e62e3bce8b6587eaf2a2e (patch) | |
tree | eaacc8b781abdc15ec346c4cab998439767ce5a2 /gcc/debug.h | |
parent | be2b548394a3d0998cf7fff5e9d85fcecd22d5f7 (diff) | |
download | gcc-a4b6974e6b2a85f7fe9e62e3bce8b6587eaf2a2e.tar.gz |
re PR debug/34249 (FAIL: gcc.dg/tree-prof/bb-reorg.c compilation, -fprofile-use -D_PROFILE_USE)
PR debug/34249
* debug.h (dwarf2out_switch_text_section): Move declaration from ...
* dwarf2out.c (dwarf2out_switch_text_section): ... here. Make
function global.
* final.c (final_scan_insn) [NOTE_INSN_SWITCH_TEXT_SECTIONS]:
Depending on dwarf2out_do_frame, call dwarf2out_switch_text_section
for DWARF2_UNWIND_INFO targets.
From-SVN: r131570
Diffstat (limited to 'gcc/debug.h')
-rw-r--r-- | gcc/debug.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/debug.h b/gcc/debug.h index 03c80412709..cab1e2603e2 100644 --- a/gcc/debug.h +++ b/gcc/debug.h @@ -160,6 +160,7 @@ extern void dwarf2out_frame_finish (void); /* Decide whether we want to emit frame unwind information for the current translation unit. */ extern int dwarf2out_do_frame (void); +extern void dwarf2out_switch_text_section (void); extern void debug_flush_symbol_queue (void); extern void debug_queue_symbol (tree); |