aboutsummaryrefslogtreecommitdiff
path: root/gcc/ra-rewrite.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2002-08-02 11:44:54 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2002-08-02 11:44:54 +0000
commita6be5aeed5b63c9e774110910a81b16a51b8f89d (patch)
tree586cde10f732f5d41badd95e38d0c01a8ce60e7f /gcc/ra-rewrite.c
parente3e16ee37de28de01bd197548cf3dd9a41cab92d (diff)
Makefile.in (ra-debug.o): Depend on $(TM_P_H).
* Makefile.in (ra-debug.o): Depend on $(TM_P_H). * ra-debug.c: Include "tm_p.h". * ra-rewrite.c (is_partly_live_1): Change return type to bool. From-SVN: r55981
Diffstat (limited to 'gcc/ra-rewrite.c')
-rw-r--r--gcc/ra-rewrite.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ra-rewrite.c b/gcc/ra-rewrite.c
index 7d0bbb6c292..451762671ff 100644
--- a/gcc/ra-rewrite.c
+++ b/gcc/ra-rewrite.c
@@ -57,7 +57,7 @@ static void delete_overlapping_slots PARAMS ((struct rtx_list **, rtx));
static int slot_member_p PARAMS ((struct rtx_list *, rtx));
static void insert_stores PARAMS ((bitmap));
static int spill_same_color_p PARAMS ((struct web *, struct web *));
-static int is_partly_live_1 PARAMS ((sbitmap, struct web *));
+static bool is_partly_live_1 PARAMS ((sbitmap, struct web *));
static void update_spill_colors PARAMS ((HARD_REG_SET *, struct web *, int));
static int spill_is_free PARAMS ((HARD_REG_SET *, struct web *));
static void emit_loads PARAMS ((struct rewrite_info *, int, rtx));
@@ -770,7 +770,7 @@ spill_same_color_p (web1, web2)
/* Given the set of live web IDs LIVE, returns nonzero, if any of WEBs
subwebs (or WEB itself) is live. */
-static int
+static bool
is_partly_live_1 (live, web)
sbitmap live;
struct web *web;