summaryrefslogtreecommitdiff
path: root/gcc/unroll.c
diff options
context:
space:
mode:
authorwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>1995-05-13 14:57:49 +0000
committerwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>1995-05-13 14:57:49 +0000
commit06f19437d6abce088d0a0c90aa3b29db0f7f8150 (patch)
treee617fd34785ae3ffbc1e41aaa4ec232e6f4aa9a6 /gcc/unroll.c
parentf0e821ec6f6e3506659e7f4d213894b2c2037e21 (diff)
downloadgcc-06f19437d6abce088d0a0c90aa3b29db0f7f8150.tar.gz
(back_branch_in_range_p): No longer static.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9677 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/unroll.c')
-rw-r--r--gcc/unroll.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/unroll.c b/gcc/unroll.c
index 050273fc89c..400b43bbe0b 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;