From ed1d96d5b5b5d61b859f5c078116b0014698c3e8 Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Wed, 28 Apr 1993 19:16:40 +0000 Subject: Don't emit a symbol if the language is "C". From-SVN: r4261 --- gcc/config/i386/osfrose.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'gcc') diff --git a/gcc/config/i386/osfrose.h b/gcc/config/i386/osfrose.h index ceeb95f..0bb8421 100644 --- a/gcc/config/i386/osfrose.h +++ b/gcc/config/i386/osfrose.h @@ -369,6 +369,16 @@ while (0) OSF1. GDB doesn't need it and kdb doesn't like it */ #define ASM_IDENTIFY_GCC(FILE) +/* Identify the front-end which produced this file. To keep symbol + space down, and not confuse kdb, only do this if the language is + not C. */ + +#define ASM_IDENTIFY_LANGUAGE(STREAM) \ +{ \ + if (strcmp (lang_identify (), "c") != 0) \ + output_lang_identify (STREAM); \ +} + /* This is how to output an assembler line defining a `double' constant. Use "word" pseudos to avoid printing NaNs, infinity, etc. */ -- cgit v1.1