diff options
author | Jeffrey A Law <law@cygnus.com> | 1997-10-07 21:35:54 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-10-07 15:35:54 -0600 |
commit | aa0c1401170ea57bdb67debe7763097d1f82bd86 (patch) | |
tree | bc46411e11f007f21c1849e47f6d099f4d3ece30 | |
parent | 6c2df6c96e065664865f733d01c6fe717362e658 (diff) | |
download | gcc-aa0c1401170ea57bdb67debe7763097d1f82bd86.zip gcc-aa0c1401170ea57bdb67debe7763097d1f82bd86.tar.gz gcc-aa0c1401170ea57bdb67debe7763097d1f82bd86.tar.bz2 |
dwarf2out.c (output_call_frame_info): Reinstate last change using flag_debug_asm check instead of flag_verbose_asm.
* dwarf2out.c (output_call_frame_info): Reinstate last change
using flag_debug_asm check instead of flag_verbose_asm.
From-SVN: r15865
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/dwarf2out.c | 8 |
2 files changed, 13 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a673885..e22120b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Tue Oct 7 15:37:35 1997 Jeffrey A Law (law@cygnus.com) + + * dwarf2out.c (output_call_frame_info): Reinstate last change + using flag_debug_asm check instead of flag_verbose_asm. + Tue Oct 7 12:57:26 1997 Jim Wilson <wilson@cygnus.com> * dwarf2out.c (output_call_frame_info): Remove last change. diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 8d2facb..7a49fd4 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -1494,6 +1494,10 @@ output_call_frame_info (for_eh) fputc ('\n', asm_out_file); + /* We're going to be generating comments, so turn on app. */ + if (flag_debug_asm) + app_enable (); + if (for_eh) { #ifdef EH_FRAME_SECTION @@ -1649,6 +1653,10 @@ output_call_frame_info (for_eh) get a value of 0. Putting .align 0 after the label fixes it. */ ASM_OUTPUT_ALIGN (asm_out_file, 0); #endif + + /* Turn off app to make assembly quicker. */ + if (flag_debug_asm) + app_disable (); } /* Output a marker (i.e. a label) for the beginning of a function, before |