Commit 714832c9 by Andreas Schwab Committed by Andreas Schwab

varasm.c (default_file_start): Suppress ASM_APP_OFF also with -dA and -dP.

* varasm.c (default_file_start): Suppress ASM_APP_OFF also with
-dA and -dP.

From-SVN: r142126
parent a388c779
2008-11-22 Andreas Schwab <schwab@suse.de>
* varasm.c (default_file_start): Suppress ASM_APP_OFF also with
-dA and -dP.
2008-11-22 Adam Nemet <anemet@caviumnetworks.com> 2008-11-22 Adam Nemet <anemet@caviumnetworks.com>
* config/mips/mips.md (rdhwr): Rename to rdhwr_synci_step_<mode>. * config/mips/mips.md (rdhwr): Rename to rdhwr_synci_step_<mode>.
......
...@@ -6394,7 +6394,8 @@ default_internal_label (FILE *stream, const char *prefix, ...@@ -6394,7 +6394,8 @@ default_internal_label (FILE *stream, const char *prefix,
void void
default_file_start (void) default_file_start (void)
{ {
if (targetm.file_start_app_off && !flag_verbose_asm) if (targetm.file_start_app_off
&& !(flag_verbose_asm || flag_debug_asm || flag_dump_rtl_in_asm))
fputs (ASM_APP_OFF, asm_out_file); fputs (ASM_APP_OFF, asm_out_file);
if (targetm.file_start_file_directive) if (targetm.file_start_file_directive)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment