diff options
author | Jeff Law <law@gcc.gnu.org> | 1998-11-04 15:49:18 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-11-04 15:49:18 -0700 |
commit | 444bf3165339160285a182ddc897be698a729f54 (patch) | |
tree | 7bc967642cfdc5fd98b1e2a62258866d5a388787 | |
parent | 8fe1938e51ccbeac307cad41789bdd08ab826050 (diff) | |
download | gcc-444bf3165339160285a182ddc897be698a729f54.zip gcc-444bf3165339160285a182ddc897be698a729f54.tar.gz gcc-444bf3165339160285a182ddc897be698a729f54.tar.bz2 |
toplev.c (output_lang_identify): Make definition dependent on ASM_IDENTIFY_LANGUAGE.
* toplev.c (output_lang_identify): Make definition dependent on
ASM_IDENTIFY_LANGUAGE.
* print-rtl.c (spaces): Make static.
From-SVN: r23532
-rw-r--r-- | gcc/ChangeLog | 9 | ||||
-rw-r--r-- | gcc/toplev.c | 5 |
2 files changed, 12 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a2c5bee..88e4273 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,4 +1,11 @@ -Tue Sep 8 23:46:04 1998 Hans-Peter Nilsson <hp@axis.se> +Wed Nov 4 23:43:08 1998 Graham <grahams@rcp.co.uk> + + * toplev.c (output_lang_identify): Make definition dependent on + ASM_IDENTIFY_LANGUAGE. + + * print-rtl.c (spaces): Make static. + +Wed Nov 4 22:16:36 1998 Hans-Peter Nilsson <hp@axis.se> * extend.texi: Clarify proper uses for register clobbers in asms. diff --git a/gcc/toplev.c b/gcc/toplev.c index c17be4d..c79c4df 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -197,7 +197,9 @@ static void vsorry PROTO((char *, va_list)); static void v_really_sorry PROTO((char *, va_list)) ATTRIBUTE_NORETURN; static void float_signal PROTO((int)) ATTRIBUTE_NORETURN; static void pipe_closed PROTO((int)) ATTRIBUTE_NORETURN; +#ifdef ASM_IDENTIFY_LANGUAGE static void output_lang_identify PROTO((FILE *)); +#endif static void open_dump_file PROTO((char *, char *)); static void close_dump_file PROTO((void (*) (FILE *, rtx), rtx)); static void dump_rtl PROTO((char *, tree, void (*) (FILE *, rtx), rtx)); @@ -2427,8 +2429,8 @@ output_file_directive (asm_file, input_name) #endif } +#ifdef ASM_IDENTIFY_LANGUAGE /* Routine to build language identifier for object file. */ - static void output_lang_identify (asm_out_file) FILE *asm_out_file; @@ -2438,6 +2440,7 @@ output_lang_identify (asm_out_file) sprintf (s, "__gnu_compiled_%s", lang_identify ()); ASM_OUTPUT_LABEL (asm_out_file, s); } +#endif /* Routine to open a dump file. */ static void |