diff options
author | amacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-02-22 14:11:58 +0000 |
---|---|---|
committer | amacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-02-22 14:11:58 +0000 |
commit | e91c8aa9c2ee11182b4ba12bd74b961fddc261df (patch) | |
tree | cf2aec9a50f27da3426d83aa75ac8d37004224c7 /gcc/loop.c | |
parent | 592411905cdc9b00dc719204da4762305772719d (diff) | |
download | gcc-e91c8aa9c2ee11182b4ba12bd74b961fddc261df.tar.gz |
* loop.c (libcall_other_regs): Make extern.
* rtl.h (find_last_value): Add parameter to prototype.
(libcall_other_reg): Add extern declaration.
* rtlanal.c (find_last_value): Add another parameter to allow
a definition using a hardware register to be found as well.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25378 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/loop.c b/gcc/loop.c index 962736f9f6a..cd77cddee5c 100644 --- a/gcc/loop.c +++ b/gcc/loop.c @@ -291,7 +291,6 @@ static void mark_loop_jump PROTO((rtx, int)); static void prescan_loop PROTO((rtx, rtx)); static int reg_in_basic_block_p PROTO((rtx, rtx)); static int consec_sets_invariant_p PROTO((rtx, int, rtx)); -static rtx libcall_other_reg PROTO((rtx, rtx)); static int labels_in_range_p PROTO((rtx, int)); static void count_one_set PROTO((rtx, rtx, varray_type, rtx *)); @@ -1241,7 +1240,7 @@ record_excess_regs (in_this, not_in_this, output) If there are none, return 0. If there are one or more, return an EXPR_LIST containing all of them. */ -static rtx +rtx libcall_other_reg (insn, equiv) rtx insn, equiv; { |