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
This commit is contained in:
Andreas Schwab 2008-11-22 22:19:29 +00:00 committed by Andreas Schwab
parent a388c77976
commit 714832c9c2
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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>
* config/mips/mips.md (rdhwr): Rename to rdhwr_synci_step_<mode>.

View File

@ -6394,7 +6394,8 @@ default_internal_label (FILE *stream, const char *prefix,
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);
if (targetm.file_start_file_directive)