From a5c71710de9c34848a7867098159c4b2697fe90d Mon Sep 17 00:00:00 2001 From: ghazi Date: Fri, 2 Aug 2002 11:44:54 +0000 Subject: * 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 --- gcc/ra-rewrite.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/ra-rewrite.c') 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; -- cgit v1.2.1