aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1998-06-30 22:49:11 +0000
committerJeffrey A Law <law@cygnus.com>1998-06-30 22:49:11 +0000
commit8bf0d5bc224d5881bdb3d9841a52412cc1cde3a2 (patch)
tree41293e2dd25c2433de9893d12f0f711b21ed84e0
parentd50fb49abffd6f39644c593d7dcf0802c3b368dd (diff)
* flow.c (recompute_reg_usage): Does not return a value.
* rtl.h (recompute_reg_usage): Update prototype. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@20858 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog3
-rw-r--r--gcc/flow.c2
-rw-r--r--gcc/rtl.h2
3 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4226e18e996..b14c8ac6c66 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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.
diff --git a/gcc/flow.c b/gcc/flow.c
index eb6c2a0079a..216312b02a0 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -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;
{
diff --git a/gcc/rtl.h b/gcc/rtl.h
index 94a8360b314..5f508397ca2 100644
--- 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