diff options
author | Michael Meissner <meissner@cygnus.com> | 1998-04-22 14:20:29 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1998-04-22 14:20:29 +0000 |
commit | 693e265fc07aa9119906a3ed03318599ae6b5bc5 (patch) | |
tree | c6cc54486f0f7533219114b3a702f4e22a3569c2 /gcc/loop.c | |
parent | 43ee49e8f39d5d3d678f742a2d2e89f073632835 (diff) | |
download | gcc-693e265fc07aa9119906a3ed03318599ae6b5bc5.zip gcc-693e265fc07aa9119906a3ed03318599ae6b5bc5.tar.gz gcc-693e265fc07aa9119906a3ed03318599ae6b5bc5.tar.bz2 |
Add match_insn2; Fix prototype in loop.c
From-SVN: r19377
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -285,7 +285,7 @@ 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_loop_regs_set PROTO((rtx, rtx, char *, rtx *, int *, int)); -static void note_addr_stored PROTO((rtx)); +static void note_addr_stored PROTO((rtx, rtx)); static int loop_reg_used_before_p PROTO((rtx, rtx, rtx, rtx, rtx)); static void scan_loop PROTO((rtx, rtx, int, int)); #if 0 @@ -2825,8 +2825,9 @@ labels_in_range_p (insn, end) /* Record that a memory reference X is being set. */ static void -note_addr_stored (x) +note_addr_stored (x, y) rtx x; + rtx y ATTRIBUTE_UNUSED; { register int i; |