diff options
author | Krister Walfridsson <cato@df.lth.se> | 1998-05-17 07:48:37 +0200 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1998-05-17 05:48:37 +0000 |
commit | c5991f6804559db9c0beece070cd6f85b3715afe (patch) | |
tree | 2297259f1d4df7a21f21811cd8dd1a97a0bac6a2 | |
parent | 18f315a4b29df8b4128ce8741f6e39c4552c58e9 (diff) | |
download | gcc-c5991f6804559db9c0beece070cd6f85b3715afe.zip gcc-c5991f6804559db9c0beece070cd6f85b3715afe.tar.gz gcc-c5991f6804559db9c0beece070cd6f85b3715afe.tar.bz2 |
Fix a think-o on my part (ghazi@caip.rutgers.edu), patch from cato@df.lth.se.
toplev.c (output_lang_identify): Enable prototype and definition.
From-SVN: r19812
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/toplev.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 021184a..41c448a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Sun May 17 08:45:21 1998 Krister Walfridsson <cato@df.lth.se> + + toplev.c (output_lang_identify): Enable prototype and definition. + Sun May 17 01:12:27 PDT 1998 Jeff Law (law@cygnus.com) * version.c: Bump for snapshot. diff --git a/gcc/toplev.c b/gcc/toplev.c index 107b1c4..30f408b 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -187,9 +187,7 @@ static void vsorry PROTO((char *, va_list)); static void v_really_sorry PROTO((char *, va_list)); static void float_signal PROTO((int)); static void pipe_closed PROTO((int)); -#if 0 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)); @@ -2138,7 +2136,6 @@ output_file_directive (asm_file, input_name) /* Routine to build language identifier for object file. */ -#if 0 static void output_lang_identify (asm_out_file) FILE *asm_out_file; @@ -2148,7 +2145,6 @@ 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 |