diff options
author | Bernd Schmidt <crux@pool.informatik.rwth-aachen.de> | 1998-10-07 03:47:54 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-10-07 03:47:54 -0600 |
commit | 237228c033a9e9ee5fb145dbc961a41badcbda92 (patch) | |
tree | 9c93529819d22c69c4998841b5ac3815b287dff0 | |
parent | b0c24c269a46ba9cfe26e634398200b320d03c42 (diff) | |
download | gcc-237228c033a9e9ee5fb145dbc961a41badcbda92.zip gcc-237228c033a9e9ee5fb145dbc961a41badcbda92.tar.gz gcc-237228c033a9e9ee5fb145dbc961a41badcbda92.tar.bz2 |
* loop.c (count_one_set): Add prototype.
From-SVN: r22886
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/loop.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 07884a7..c47326d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -21,6 +21,8 @@ Wed Oct 7 02:27:52 1998 Jeffrey A Law (law@cygnus.com) Wed Oct 7 01:08:43 1998 Bernd Schmidt <crux@Pool.Informatik.RWTH-Aachen.DE> + * loop.c (count_one_set): Add prototype. + * caller-save.c (restore_referenced_regs): Lose mode argument. (insert_save): Lose mode argument. (insert_restore): Lose mode argument. @@ -291,6 +291,8 @@ 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 *)); + static void count_loop_regs_set PROTO((rtx, rtx, varray_type, varray_type, int *, int)); static void note_addr_stored PROTO((rtx, rtx)); |