From 3c01fc191b2852f46dbca3f33b2fa766b9e7e8e3 Mon Sep 17 00:00:00 2001 From: kazu Date: Tue, 9 Nov 2004 17:31:06 +0000 Subject: * reload1.c (reloads_conflict, gen_reload): Make them static. * reload.h: Remove the corresponding prototypes. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90350 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/reload.h | 6 ------ gcc/reload1.c | 6 ++++-- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e949d74d9ec..17a5627ca44 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-11-09 Kazu Hirata + + * reload1.c (reloads_conflict, gen_reload): Make them static. + * reload.h: Remove the corresponding prototypes. + 2004-11-09 Kazu Hirata * reload.c (refers_to_mem_for_reload_p, diff --git a/gcc/reload.h b/gcc/reload.h index 5cd0ad62cb1..7ddadb74141 100644 --- a/gcc/reload.h +++ b/gcc/reload.h @@ -331,7 +331,6 @@ extern int push_reload (rtx, rtx, rtx *, rtx *, enum reg_class, extern void reload_cse_regs (rtx); /* Functions in reload1.c: */ -extern int reloads_conflict (int, int); /* Initialize the reload pass once per compilation. */ extern void init_reload (void); @@ -347,11 +346,6 @@ extern void mark_home_live (int); replacement (such as sp), plus an offset. */ extern rtx eliminate_regs (rtx, enum machine_mode, rtx); -/* Emit code to perform a reload from IN (which may be a reload register) to - OUT (which may also be a reload register). IN or OUT is from operand - OPNUM with reload type TYPE. */ -extern rtx gen_reload (rtx, rtx, int, enum reload_type); - /* Deallocate the reload register used by reload number R. */ extern void deallocate_reload_reg (int r); diff --git a/gcc/reload1.c b/gcc/reload1.c index d70fb299f81..c38ec99f32e 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -430,6 +430,8 @@ static rtx inc_for_reload (rtx, rtx, rtx, int); static void add_auto_inc_notes (rtx, rtx); #endif static void copy_eh_notes (rtx, rtx); +static int reloads_conflict (int, int); +static rtx gen_reload (rtx, rtx, int, enum reload_type); /* Initialize the reload pass once per compilation. */ @@ -4593,7 +4595,7 @@ reload_reg_reaches_end_p (unsigned int regno, int opnum, enum reload_type type) This function uses the same algorithm as reload_reg_free_p above. */ -int +static int reloads_conflict (int r1, int r2) { enum reload_type r1_type = rld[r1].when_needed; @@ -7334,7 +7336,7 @@ emit_reload_insns (struct insn_chain *chain) Returns first insn emitted. */ -rtx +static rtx gen_reload (rtx out, rtx in, int opnum, enum reload_type type) { rtx last = get_last_insn (); -- cgit v1.2.1