function.c (update_epilogue_consts): Don't use PARAMS.
authorSteven Bosscher <stevenb@suse.de>
Mon, 1 Dec 2003 13:07:14 +0000 (13:07 +0000)
committerSteven Bosscher <steven@gcc.gnu.org>
Mon, 1 Dec 2003 13:07:14 +0000 (13:07 +0000)
* 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
gcc/function.c
gcc/rtl.h
gcc/target.h

index d109cebb45457560f8f28354b9546ac7d8a36e4d..0e743a2e6888973c3d850b20b9675318f37b11ab 100644 (file)
@@ -1,3 +1,9 @@
+2003-12-01  Steven Bosscher  <stevenb@suse.de>
+
+       * 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  <ebotcazou@libertysurf.fr>
 
        PR middle-end/7847
index d37f6562e49df1bb0cef053802c1bbc719b513f4..9dac3e455768273c70b621f9d912a7a54904d254 100644 (file)
@@ -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
index 44fd9652025a7d03b03c0d6c3e8a2ed3fde6fb21..f6957bcbdf62e378144206b02bbbefca3c3c61f1 100644 (file)
--- 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
index c959656e6b2dd31a073dd48825002eb97a3815c6..722485511b7637b0d93ef81431db63967e2a3d8e 100644 (file)
@@ -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.  */