From 90ff44cfd6d1cd20ebb9716d32fb821ca94560b7 Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Sat, 17 May 2003 01:40:45 +0000 Subject: cfgloopanal.c (test_for_iteration): Use string concatentation on HOST_WIDE_INT_PRINT_* format specifier to collapse... 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. From-SVN: r66900 --- gcc/cfgloopanal.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gcc/cfgloopanal.c') diff --git a/gcc/cfgloopanal.c b/gcc/cfgloopanal.c index c3ef5a3..88eaa2c 100644 --- a/gcc/cfgloopanal.c +++ b/gcc/cfgloopanal.c @@ -648,9 +648,8 @@ test_for_iteration (desc, iter) if (rtl_dump_file) { - fprintf (rtl_dump_file, "; Conditional to continue loop at "); - fprintf (rtl_dump_file, HOST_WIDE_INT_PRINT_UNSIGNED, iter); - fprintf (rtl_dump_file, "th iteration: "); + fprintf (rtl_dump_file, "; Conditional to continue loop at " + HOST_WIDE_INT_PRINT_UNSIGNED "th iteration: ", iter); print_simple_rtl (rtl_dump_file, exp); fprintf (rtl_dump_file, "\n"); } -- cgit v1.1