diff options
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/i386/sun386.h | 2 | ||||
-rw-r--r-- | gcc/config/mips/mips.h | 1 | ||||
-rw-r--r-- | gcc/config/nextstep.h | 1 | ||||
-rw-r--r-- | gcc/config/nextstep21.h | 1 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 1 |
5 files changed, 1 insertions, 5 deletions
diff --git a/gcc/config/i386/sun386.h b/gcc/config/i386/sun386.h index 4302ec4..8171b89 100644 --- a/gcc/config/i386/sun386.h +++ b/gcc/config/i386/sun386.h @@ -57,7 +57,7 @@ do \ #undef ASM_FILE_START #define ASM_FILE_START(FILE) \ do { \ - extern char *version_string, *language_string; \ + extern char *version_string; \ { \ int len = strlen (main_input_filename); \ char *na = main_input_filename + len; \ diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 409e9c5..e80eb6a 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -27,7 +27,6 @@ Boston, MA 02111-1307, USA. */ extern char *asm_file_name; extern char call_used_regs[]; -extern char *language_string; extern int may_call_alloca; extern char **save_argv; extern int target_flags; diff --git a/gcc/config/nextstep.h b/gcc/config/nextstep.h index 59050a1..69c3712 100644 --- a/gcc/config/nextstep.h +++ b/gcc/config/nextstep.h @@ -250,7 +250,6 @@ Boston, MA 02111-1307, USA. */ #undef ASM_FILE_END #define ASM_FILE_END(FILE) \ do { \ - extern char *language_string; \ if (strcmp (language_string, "GNU C++") == 0) \ { \ constructor_section (); \ diff --git a/gcc/config/nextstep21.h b/gcc/config/nextstep21.h index 8009571..aa2c443 100644 --- a/gcc/config/nextstep21.h +++ b/gcc/config/nextstep21.h @@ -43,7 +43,6 @@ Boston, MA 02111-1307, USA. */ #undef ASM_FILE_END #define ASM_FILE_END(FILE) \ do { \ - extern char *language_string; \ if (strcmp (language_string, "GNU C++") == 0) \ { \ ASM_OUTPUT_ALIGN (FILE, 1); \ diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index d53672f..700fd3e 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -43,7 +43,6 @@ Boston, MA 02111-1307, USA. */ #define TARGET_NO_PROTOTYPE 0 #endif -extern char *language_string; extern int profile_block_flag; #define min(A,B) ((A) < (B) ? (A) : (B)) |