flow.c (recompute_reg_usage): Does not return a value.
authorJeffrey A Law <law@cygnus.com>
Tue, 30 Jun 1998 22:49:11 +0000 (22:49 +0000)
committerJeff Law <law@gcc.gnu.org>
Tue, 30 Jun 1998 22:49:11 +0000 (16:49 -0600)
        * flow.c (recompute_reg_usage): Does not return a value.
        * rtl.h (recompute_reg_usage): Update prototype.

From-SVN: r20858

gcc/ChangeLog
gcc/flow.c
gcc/rtl.h

index 4226e18e996135fff89bd17be3841a18227dc510..b14c8ac6c66c2f1bee43fe27bf58568f497207f9 100644 (file)
@@ -1,5 +1,8 @@
 Tue Jun 30 23:16:39 1998  Jeffrey A Law  (law@cygnus.com)
 
+       * flow.c (recompute_reg_usage): Does not return a value.
+       * rtl.h (recompute_reg_usage): Update prototype.
+
        * jump.c (jump_optimize): Show that the jump chain is not
        valid when not optimizing.
 
index eb6c2a0079ad084959132ecc8f2632db7bf0a920..216312b02a0bfce2d5d5e7f25834d716fe10df36 100644 (file)
@@ -4208,7 +4208,7 @@ count_reg_references (x)
    It might be worthwhile to update REG_LIVE_LENGTH, REG_BASIC_BLOCK and
    possibly other information which is used by the register allocators.  */
 
-int
+void
 recompute_reg_usage (f)
      rtx f;
 {
index 94a8360b3143dd9d888700f70b66afbb2ffc18d3..5f508397ca2446add1411b54babff42c3121363a 100644 (file)
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -1409,7 +1409,7 @@ extern void stupid_life_analysis  PROTO ((rtx, int, FILE *));
 
 /* In flow.c */
 extern void allocate_for_life_analysis PROTO ((void));
-extern int recompute_reg_usage         PROTO ((rtx));
+extern void recompute_reg_usage                PROTO ((rtx));
 #ifdef BUFSIZ
 extern void dump_flow_info             PROTO ((FILE *));
 #endif