Commit 5edc9230 by H.J. Lu Committed by Jeff Law

print-rtl.c (print_rtx): Add prototype.

        * print-rtl.c (print_rtx): Add prototype.
        * unroll.c (iteration_info): Make it static.

From-SVN: r24116
parent c3a6e905
...@@ -55,6 +55,8 @@ static int indent; ...@@ -55,6 +55,8 @@ static int indent;
extern char **insn_name_ptr; extern char **insn_name_ptr;
static void print_rtx PROTO ((rtx));
/* Nonzero means suppress output of instruction numbers and line number /* Nonzero means suppress output of instruction numbers and line number
notes in debugging dumps. notes in debugging dumps.
This must be defined here so that programs like gencodes can be linked. */ This must be defined here so that programs like gencodes can be linked. */
......
...@@ -194,7 +194,7 @@ static rtx initial_reg_note_copy PROTO((rtx, struct inline_remap *)); ...@@ -194,7 +194,7 @@ static rtx initial_reg_note_copy PROTO((rtx, struct inline_remap *));
static void final_reg_note_copy PROTO((rtx, struct inline_remap *)); static void final_reg_note_copy PROTO((rtx, struct inline_remap *));
static void copy_loop_body PROTO((rtx, rtx, struct inline_remap *, rtx, int, static void copy_loop_body PROTO((rtx, rtx, struct inline_remap *, rtx, int,
enum unroll_types, rtx, rtx, rtx, rtx)); enum unroll_types, rtx, rtx, rtx, rtx));
void iteration_info PROTO((rtx, rtx *, rtx *, rtx, rtx)); static void iteration_info PROTO((rtx, rtx *, rtx *, rtx, rtx));
static int find_splittable_regs PROTO((enum unroll_types, rtx, rtx, rtx, int, static int find_splittable_regs PROTO((enum unroll_types, rtx, rtx, rtx, int,
unsigned HOST_WIDE_INT)); unsigned HOST_WIDE_INT));
static int find_splittable_givs PROTO((struct iv_class *, enum unroll_types, static int find_splittable_givs PROTO((struct iv_class *, enum unroll_types,
...@@ -2329,7 +2329,7 @@ biv_total_increment (bl, loop_start, loop_end) ...@@ -2329,7 +2329,7 @@ biv_total_increment (bl, loop_start, loop_end)
Initial_value and/or increment are set to zero if their values could not Initial_value and/or increment are set to zero if their values could not
be calculated. */ be calculated. */
void static void
iteration_info (iteration_var, initial_value, increment, loop_start, loop_end) iteration_info (iteration_var, initial_value, increment, loop_start, loop_end)
rtx iteration_var, *initial_value, *increment; rtx iteration_var, *initial_value, *increment;
rtx loop_start, loop_end; rtx loop_start, loop_end;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment