diff options
author | Andrew MacLeod <amacleod@cygnus.com> | 1999-02-22 14:11:58 +0000 |
---|---|---|
committer | Andrew Macleod <amacleod@gcc.gnu.org> | 1999-02-22 14:11:58 +0000 |
commit | 89d3d4424947aa2328d79659144f3bbad6998255 (patch) | |
tree | cf2aec9a50f27da3426d83aa75ac8d37004224c7 /gcc/loop.c | |
parent | a4c6502a661a4d0a6e157e118c7be4178176f743 (diff) | |
download | gcc-89d3d4424947aa2328d79659144f3bbad6998255.zip gcc-89d3d4424947aa2328d79659144f3bbad6998255.tar.gz gcc-89d3d4424947aa2328d79659144f3bbad6998255.tar.bz2 |
loop.c (libcall_other_regs): Make extern.
* 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.
From-SVN: r25378
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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; { |