diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-03-20 02:17:20 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-03-20 02:17:20 +0000 |
commit | fbd0a1aced0bb045b6ed41a769a0d8b5a0b073fc (patch) | |
tree | ca321d72ba838fd9f30b00fc2dfa9cc47c34cc20 /gcc/loop.h | |
parent | 0799286bb5af2ddcd040b83c2fc547f24c91cf6c (diff) | |
download | gcc-fbd0a1aced0bb045b6ed41a769a0d8b5a0b073fc.tar.gz |
Add prototypes.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@3794 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/loop.h')
-rw-r--r-- | gcc/loop.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gcc/loop.h b/gcc/loop.h index 42894ce7af6..bb219c32d21 100644 --- a/gcc/loop.h +++ b/gcc/loop.h @@ -153,17 +153,17 @@ extern struct iv_class *loop_iv_list; /* Forward declarations for non-static functions declared in loop.c and unroll.c. */ -int invariant_p (); -rtx get_condition_for_loop (); -void emit_iv_add_mult (); +int invariant_p PROTO((rtx)); +rtx get_condition_for_loop PROTO((rtx)); +void emit_iv_add_mult PROTO((rtx, rtx, rtx, rtx, rtx)); /* Forward declarations for non-static functions declared in stmt.c. */ -void find_loop_tree_blocks (); -void unroll_block_trees (); - -void unroll_loop (); -rtx biv_total_increment (); -unsigned HOST_WIDE_INT loop_iterations (); -rtx final_biv_value (); -rtx final_giv_value (); -void emit_unrolled_add (); +void find_loop_tree_blocks PROTO((void)); +void unroll_block_trees PROTO((void)); + +void unroll_loop PROTO((rtx, int, rtx, rtx, int)); +rtx biv_total_increment PROTO((struct iv_class *, rtx, rtx)); +unsigned HOST_WIDE_INT loop_iterations PROTO((rtx, rtx)); +rtx final_biv_value PROTO((struct iv_class *, rtx, rtx)); +rtx final_giv_value PROTO((struct induction *, rtx, rtx)); +void emit_unrolled_add PROTO((rtx, rtx, rtx)); |