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/ra-rewrite.c | |
parent | 77fc5755437b712190e1c7a31d6a20b4f5e22d1f (diff) | |
download | linaro-gcc-85aa12f7642381b58a13d477b4ccb9bd71d5396b.tar.gz linaro-gcc-85aa12f7642381b58a13d477b4ccb9bd71d5396b.tar.bz2 linaro-gcc-85aa12f7642381b58a13d477b4ccb9bd71d5396b.zip |
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/ra-rewrite.c')
-rw-r--r-- | gcc/ra-rewrite.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gcc/ra-rewrite.c b/gcc/ra-rewrite.c index 5cb1bb95522..df498ab6518 100644 --- a/gcc/ra-rewrite.c +++ b/gcc/ra-rewrite.c @@ -1954,17 +1954,17 @@ dump_cost (level) unsigned int level; { ra_debug_msg (level, "Instructions for spilling\n added:\n"); - ra_debug_msg (level, " loads =%d cost=", emitted_spill_loads); - ra_debug_msg (level, HOST_WIDE_INT_PRINT_UNSIGNED, spill_load_cost); - ra_debug_msg (level, "\n stores=%d cost=", emitted_spill_stores); - ra_debug_msg (level, HOST_WIDE_INT_PRINT_UNSIGNED, spill_store_cost); - ra_debug_msg (level, "\n remat =%d cost=", emitted_remat); - ra_debug_msg (level, HOST_WIDE_INT_PRINT_UNSIGNED, spill_remat_cost); - ra_debug_msg (level, "\n removed:\n moves =%d cost=", deleted_move_insns); - ra_debug_msg (level, HOST_WIDE_INT_PRINT_UNSIGNED, deleted_move_cost); - ra_debug_msg (level, "\n others=%d cost=", deleted_def_insns); - ra_debug_msg (level, HOST_WIDE_INT_PRINT_UNSIGNED, deleted_def_cost); - ra_debug_msg (level, "\n"); + ra_debug_msg (level, " loads =%d cost=" HOST_WIDE_INT_PRINT_UNSIGNED "\n", + emitted_spill_loads, spill_load_cost); + ra_debug_msg (level, " stores=%d cost=" HOST_WIDE_INT_PRINT_UNSIGNED "\n", + emitted_spill_stores, spill_store_cost); + ra_debug_msg (level, " remat =%d cost=" HOST_WIDE_INT_PRINT_UNSIGNED "\n", + emitted_remat, spill_remat_cost); + ra_debug_msg (level, " removed:\n moves =%d cost=" + HOST_WIDE_INT_PRINT_UNSIGNED "\n", + deleted_move_insns, deleted_move_cost); + ra_debug_msg (level, " others=%d cost=" HOST_WIDE_INT_PRINT_UNSIGNED "\n", + deleted_def_insns, deleted_def_cost); } /* Initialization of the rewrite phase. */ |