diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1995-05-13 07:57:49 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1995-05-13 07:57:49 -0700 |
commit | 9923a30d5c75debb43f07ad282aa8f4cfdd3e9c3 (patch) | |
tree | e617fd34785ae3ffbc1e41aaa4ec232e6f4aa9a6 /gcc/unroll.c | |
parent | 09dcbd74f9c6a4173c48bb46284bea45f5ef0146 (diff) | |
download | gcc-9923a30d5c75debb43f07ad282aa8f4cfdd3e9c3.zip gcc-9923a30d5c75debb43f07ad282aa8f4cfdd3e9c3.tar.gz gcc-9923a30d5c75debb43f07ad282aa8f4cfdd3e9c3.tar.bz2 |
(back_branch_in_range_p): No longer static.
From-SVN: r9677
Diffstat (limited to 'gcc/unroll.c')
-rw-r--r-- | gcc/unroll.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/unroll.c b/gcc/unroll.c index 050273f..400b43b 100644 --- a/gcc/unroll.c +++ b/gcc/unroll.c @@ -200,7 +200,6 @@ static rtx initial_reg_note_copy PROTO((rtx, struct inline_remap *)); static void final_reg_note_copy PROTO((rtx, struct inline_remap *)); static void copy_loop_body PROTO((rtx, rtx, struct inline_remap *, rtx, int, enum unroll_types, rtx, rtx, rtx, rtx)); -static int back_branch_in_range_p PROTO((rtx, rtx, rtx)); static void iteration_info PROTO((rtx, rtx *, rtx *, rtx, rtx)); static rtx approx_final_value PROTO((enum rtx_code, rtx, int *, int *)); static int find_splittable_regs PROTO((enum unroll_types, rtx, rtx, rtx, int)); @@ -2021,7 +2020,7 @@ emit_unrolled_add (dest_reg, src_reg, increment) In practice, this is not a problem, because this function is seldom called, and uses a negligible amount of CPU time on average. */ -static int +int back_branch_in_range_p (insn, loop_start, loop_end) rtx insn; rtx loop_start, loop_end; |