Commit c5991f68 by Krister Walfridsson Committed by Kaveh Ghazi

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
parent 18f315a4
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) Sun May 17 01:12:27 PDT 1998 Jeff Law (law@cygnus.com)
* version.c: Bump for snapshot. * version.c: Bump for snapshot.
......
...@@ -187,9 +187,7 @@ static void vsorry PROTO((char *, va_list)); ...@@ -187,9 +187,7 @@ static void vsorry PROTO((char *, va_list));
static void v_really_sorry PROTO((char *, va_list)); static void v_really_sorry PROTO((char *, va_list));
static void float_signal PROTO((int)); static void float_signal PROTO((int));
static void pipe_closed PROTO((int)); static void pipe_closed PROTO((int));
#if 0
static void output_lang_identify PROTO((FILE *)); static void output_lang_identify PROTO((FILE *));
#endif
static void open_dump_file PROTO((char *, char *)); static void open_dump_file PROTO((char *, char *));
static void close_dump_file PROTO((void (*) (FILE *, rtx), rtx)); static void close_dump_file PROTO((void (*) (FILE *, rtx), rtx));
static void dump_rtl PROTO((char *, tree, 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) ...@@ -2138,7 +2136,6 @@ output_file_directive (asm_file, input_name)
/* Routine to build language identifier for object file. */ /* Routine to build language identifier for object file. */
#if 0
static void static void
output_lang_identify (asm_out_file) output_lang_identify (asm_out_file)
FILE *asm_out_file; FILE *asm_out_file;
...@@ -2148,7 +2145,6 @@ output_lang_identify (asm_out_file) ...@@ -2148,7 +2145,6 @@ output_lang_identify (asm_out_file)
sprintf (s, "__gnu_compiled_%s", lang_identify ()); sprintf (s, "__gnu_compiled_%s", lang_identify ());
ASM_OUTPUT_LABEL (asm_out_file, s); ASM_OUTPUT_LABEL (asm_out_file, s);
} }
#endif
/* Routine to open a dump file. */ /* Routine to open a dump file. */
static void static void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment