diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2004-03-05 10:17:40 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2004-03-05 10:17:40 +0000 |
commit | 86caf04d48093177caa3904e186ef538e4094e9d (patch) | |
tree | e25808a224115fb6cb5f5a75d510945a3104eb09 /gcc/loop.c | |
parent | d0fe265e2c15a06650afe13d598e4f4b83fd96d6 (diff) | |
download | gcc-86caf04d48093177caa3904e186ef538e4094e9d.zip gcc-86caf04d48093177caa3904e186ef538e4094e9d.tar.gz gcc-86caf04d48093177caa3904e186ef538e4094e9d.tar.bz2 |
cse.c (cse_end_of_basic_block): Make static.
2004-02-18 Paolo Bonzini <bonzini@gnu.org>
* cse.c (cse_end_of_basic_block): Make static.
* local-alloc.c (function_invariant_p): Move to
reload1.c.
* loop.c (libcall_other_reg, record_excess_regs):
Make static.
* reload1.c (function_invariant_p): Moved here
from local-alloc.c, made static.
* rtl.h (cse_end_of_basic_block, function_invariant_p,
libcall_other_reg, record_excess_regs): Remove
declarations.
From-SVN: r78960
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -263,6 +263,8 @@ static void replace_call_address (rtx, rtx, rtx); #endif static rtx skip_consec_insns (rtx, int); static int libcall_benefit (rtx); +static rtx libcall_other_reg (rtx, rtx); +static void record_excess_regs (rtx, rtx, rtx *); static void ignore_some_movables (struct loop_movables *); static void force_movables (struct loop_movables *); static void combine_movables (struct loop_movables *, struct loop_regs *); @@ -1231,7 +1233,7 @@ scan_loop (struct loop *loop, int flags) /* Add elements to *OUTPUT to record all the pseudo-regs mentioned in IN_THIS but not mentioned in NOT_IN_THIS. */ -void +static void record_excess_regs (rtx in_this, rtx not_in_this, rtx *output) { enum rtx_code code; @@ -1285,7 +1287,7 @@ record_excess_regs (rtx in_this, rtx not_in_this, rtx *output) If there are none, return 0. If there are one or more, return an EXPR_LIST containing all of them. */ -rtx +static rtx libcall_other_reg (rtx insn, rtx equiv) { rtx note = find_reg_note (insn, REG_RETVAL, NULL_RTX); |