diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-17 01:40:45 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-17 01:40:45 +0000 |
commit | 85aa12f7642381b58a13d477b4ccb9bd71d5396b (patch) | |
tree | c019ef32abbdcab9b8ee28ff9f140a9c8687ed6e /gcc/unroll.c | |
parent | 77fc5755437b712190e1c7a31d6a20b4f5e22d1f (diff) | |
download | gcc-85aa12f7642381b58a13d477b4ccb9bd71d5396b.tar.gz |
gcc:
* cfgloopanal.c (test_for_iteration): Use string concatentation on
HOST_WIDE_INT_PRINT_* format specifier to collapse multiple
function calls into one.
* dbxout.c (dbxout_symbol): Likewise.
* defaults.h (ASM_OUTPUT_SIZE_DIRECTIVE): Likewise.
* dwarf2asm.c (dw2_asm_output_data_uleb128,
dw2_asm_output_data_sleb128): Likewise.
* genrecog.c (debug_decision_2): Likewise.
* loop.c (emit_prefetch_instructions): Likewise.
* print-rtl.c (print_rtx): Likewise.
* print-tree.c (print_node_brief, print_node): Likewise.
* ra-debug.c (dump_igraph, dump_graph_cost,
dump_static_insn_cost): Likewise.
* ra-rewrite.c (dump_cost): Likewise.
* sdbout.c (PUT_SDB_INT_VAL, PUT_SDB_SIZE): Likewise.
* sreal.c (dump_sreal): Likewise.
* unroll.c (unroll_loop, precondition_loop_p): Likewise.
* varasm.c (assemble_vtable_entry): Likewise.
cp:
* ptree.c (cxx_print_type, cxx_print_xnode): Use string
concatentation on HOST_WIDE_INT_PRINT_* format specifier to
collapse multiple function calls into one.
* tree.c (debug_binfo): Likewise.
java:
* parse.y (print_int_node): Use string concatentation on
HOST_WIDE_INT_PRINT_* format specifier to collapse multiple
function calls into one.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66900 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/unroll.c')
-rw-r--r-- | gcc/unroll.c | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/gcc/unroll.c b/gcc/unroll.c index 9db997512c1..396ec42b93b 100644 --- a/gcc/unroll.c +++ b/gcc/unroll.c @@ -285,12 +285,8 @@ unroll_loop (loop, insn_count, strength_reduce_p) loop_info->n_iterations = 0; if (loop_dump_stream && loop_info->n_iterations > 0) - { - fputs ("Loop unrolling: ", loop_dump_stream); - fprintf (loop_dump_stream, HOST_WIDE_INT_PRINT_DEC, - loop_info->n_iterations); - fputs (" iterations.\n", loop_dump_stream); - } + fprintf (loop_dump_stream, "Loop unrolling: " HOST_WIDE_INT_PRINT_DEC + " iterations.\n", loop_info->n_iterations); /* Find and save a pointer to the last nonnote insn in the loop. */ @@ -1416,13 +1412,10 @@ precondition_loop_p (loop, initial_value, final_value, increment, mode) *mode = word_mode; if (loop_dump_stream) - { - fputs ("Preconditioning: Success, number of iterations known, ", - loop_dump_stream); - fprintf (loop_dump_stream, HOST_WIDE_INT_PRINT_DEC, - loop_info->n_iterations); - fputs (".\n", loop_dump_stream); - } + fprintf (loop_dump_stream, + "Preconditioning: Success, number of iterations known, " + HOST_WIDE_INT_PRINT_DEC ".\n", + loop_info->n_iterations); return 1; } |