diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-02 11:44:54 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-02 11:44:54 +0000 |
commit | a5c71710de9c34848a7867098159c4b2697fe90d (patch) | |
tree | 586cde10f732f5d41badd95e38d0c01a8ce60e7f /gcc/ra-rewrite.c | |
parent | 0b91d495ba909ef43abcb035bdb3776966bd9612 (diff) | |
download | gcc-a5c71710de9c34848a7867098159c4b2697fe90d.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55981 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ra-rewrite.c')
-rw-r--r-- | gcc/ra-rewrite.c | 4 |
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; |