Commit 551dc360 by Andreas Jaeger Committed by Andreas Jaeger

* bt-load.c (migrate_btr_defs): Correct printf arguments.

From-SVN: r68192
parent a1569df8
2003-06-19 Andreas Jaeger <aj@suse.de>
* bt-load.c (migrate_btr_defs): Correct printf arguments.
* protoize.c: Fix breakage from last patch.
2003-06-19 J"orn Rennecke <joern.rennecke@superh.com>
......
......@@ -1299,8 +1299,9 @@ migrate_btr_defs (enum reg_class btr_class, int allow_callee_save)
{
basic_block bb = BASIC_BLOCK (i);
fprintf(rtl_dump_file,
"Basic block %d: count = %lld loop-depth = %d idom = %d\n",
i, bb->count, bb->loop_depth,
"Basic block %d: count = " HOST_WIDEST_INT_PRINT_DEC
" loop-depth = %d idom = %d\n",
i, (HOST_WIDEST_INT) bb->count, bb->loop_depth,
get_immediate_dominator (dom, bb)->index);
}
}
......
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