From: Richard Henderson Date: Fri, 20 Jun 2003 19:37:17 +0000 (-0700) Subject: alpha.c (alpha_file_start): Disable file_start_file_directive for ELF and not MDEBUG. X-Git-Tag: releases/gcc-3.4.0~5607 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4739b00e528da80052c920997ad8addaa392e545;p=thirdparty%2Fgcc.git alpha.c (alpha_file_start): Disable file_start_file_directive for ELF and not MDEBUG. * config/alpha/alpha.c (alpha_file_start): Disable file_start_file_directive for ELF and not MDEBUG. From-SVN: r68280 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4c915836d1d7..7954f0622354 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-06-20 Richard Henderson + + * config/alpha/alpha.c (alpha_file_start): Disable + file_start_file_directive for ELF and not MDEBUG. + 2003-06-20 J"orn Rennecke * sh.h (ROUND_TYPE_ALIGN): Remove. diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index 23843bc831e5..5e16e8ee93bd 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -8682,6 +8682,13 @@ alpha_reorg (void) static void alpha_file_start (void) { +#ifdef OBJECT_FORMAT_ELF + /* If emitting dwarf2 debug information, we cannot generate a .file + directive to start the file, as it will conflict with dwarf2out + file numbers. So it's only useful when emitting mdebug output. */ + targetm.file_start_file_directive = (write_symbols == DBX_DEBUG); +#endif + default_file_start (); #ifdef MS_STAMP fprintf (asm_out_file, "\t.verstamp %d %d\n", MS_STAMP, LS_STAMP);