diff options
author | wood <wood@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-04-22 11:46:07 +0000 |
---|---|---|
committer | wood <wood@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-04-22 11:46:07 +0000 |
commit | 8759db03ef37cae809e1ce4ef345ca0f0df807cc (patch) | |
tree | 6b213e21c04569729ada6d5333a770cd29945617 /gcc/config/nextstep.h | |
parent | ef0c65859ae6dfa965120133e8d39efedafb059a (diff) | |
download | gcc-8759db03ef37cae809e1ce4ef345ca0f0df807cc.tar.gz |
(ASM_FILE_START): Don't output a .file directive.
That's used by the assembler for error reporting.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@4190 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/nextstep.h')
-rw-r--r-- | gcc/config/nextstep.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/config/nextstep.h b/gcc/config/nextstep.h index 0e299192d5d..dc2f0208d97 100644 --- a/gcc/config/nextstep.h +++ b/gcc/config/nextstep.h @@ -225,9 +225,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ fprintf (FILE, ".reference .destructors_used\n"); \ } while (0) +/* Don't output a .file directive. That is only used by the assembler for + error reporting. */ #undef ASM_FILE_START -#define ASM_FILE_START(FILE) \ - fprintf (FILE, "\t.file\t\"%s\"\n", dump_base_name); +#define ASM_FILE_START(FILE) #undef ASM_FILE_END #define ASM_FILE_END(FILE) \ |