From 80fcc7bcaefc31cabda221cf137b89fdd2d1cf8d Mon Sep 17 00:00:00 2001 From: Steven Bosscher Date: Mon, 1 Dec 2003 13:07:14 +0000 Subject: [PATCH] function.c (update_epilogue_consts): Don't use PARAMS. * function.c (update_epilogue_consts): Don't use PARAMS. * rtl.h (web_main): Ditto. * target.h (is_costly_dependence): Ditto From-SVN: r74099 --- gcc/ChangeLog | 6 ++++++ gcc/function.c | 2 +- gcc/rtl.h | 2 +- gcc/target.h | 5 ++--- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d109cebb4545..0e743a2e6888 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2003-12-01 Steven Bosscher + + * function.c (update_epilogue_consts): Don't use PARAMS. + * rtl.h (web_main): Ditto. + * target.h (is_costly_dependence): Ditto + 2003-12-01 Eric Botcazou PR middle-end/7847 diff --git a/gcc/function.c b/gcc/function.c index d37f6562e49d..9dac3e455768 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -7316,7 +7316,7 @@ struct epi_info }; static void handle_epilogue_set (rtx, struct epi_info *); -static void update_epilogue_consts PARAMS ((rtx, rtx, void *)); +static void update_epilogue_consts (rtx, rtx, void *); static void emit_equiv_load (struct epi_info *); /* Modify INSN, a list of one or more insns that is part of the epilogue, to diff --git a/gcc/rtl.h b/gcc/rtl.h index 44fd9652025a..f6957bcbdf62 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -2087,7 +2087,7 @@ extern void dump_combine_stats (FILE *); extern void dump_combine_total_stats (FILE *); #endif /* In web.c */ -extern void web_main PARAMS ((void)); +extern void web_main (void); /* In sched.c. */ #ifdef BUFSIZ diff --git a/gcc/target.h b/gcc/target.h index c959656e6b2d..722485511b76 100644 --- a/gcc/target.h +++ b/gcc/target.h @@ -262,9 +262,8 @@ struct gcc_target fourth argument is the cost of the dependence as estimated by the scheduler. The last argument is the distance in cycles between the already scheduled insn (first parameter) and the - the second insn (second parameter). - */ - bool (* is_costly_dependence) PARAMS ((rtx, rtx, rtx, int, int)); + the second insn (second parameter). */ + bool (* is_costly_dependence) (rtx, rtx, rtx, int, int); } sched; /* Given two decls, merge their attributes and return the result. */ -- 2.47.3