Commit eed90b2c by Jeffrey A Law Committed by Jeff Law

toplev.c (close_dump_file): Wrap function prototype for argument "func" in PROTO.

        * toplev.c (close_dump_file): Wrap function prototype for
        argument "func" in PROTO.
        (dump_rtl): Likewise.

From-SVN: r17561
parent bfd6bc60
Sat Jan 31 11:26:58 1998 Jeffrey A Law (law@cygnus.com)
* toplev.c (close_dump_file): Wrap function prototype for
argument "func" in PROTO.
(dump_rtl): Likewise.
Fri Jan 30 22:30:39 1998 John Carr <jfc@mit.edu> Fri Jan 30 22:30:39 1998 John Carr <jfc@mit.edu>
* sparc.c (sparc_override_options): Make v8plus and ultrasparc set * sparc.c (sparc_override_options): Make v8plus and ultrasparc set
......
...@@ -2202,7 +2202,7 @@ open_dump_file (suffix, function_name) ...@@ -2202,7 +2202,7 @@ open_dump_file (suffix, function_name)
/* Routine to close a dump file. */ /* Routine to close a dump file. */
static void static void
close_dump_file (func, insns) close_dump_file (func, insns)
void (*func)(FILE *, rtx); void (*func) PROTO ((FILE *, rtx));
rtx insns; rtx insns;
{ {
TIMEVAR TIMEVAR
...@@ -2225,7 +2225,7 @@ static void ...@@ -2225,7 +2225,7 @@ static void
dump_rtl (suffix, decl, func, insns) dump_rtl (suffix, decl, func, insns)
char *suffix; char *suffix;
tree decl; tree decl;
void (*func)(FILE *, rtx); void (*func) PROTO ((FILE *, rtx));
rtx insns; rtx insns;
{ {
open_dump_file (suffix, decl_printable_name (decl, 2)); open_dump_file (suffix, decl_printable_name (decl, 2));
......
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