Commit 04653686 by Richard Henderson Committed by Richard Henderson

* cfg.c (dump_flow_info): Print bb->index, not i, for block number.

From-SVN: r53961
parent 6ff14f32
2002-05-28 Richard Henderson <rth@redhat.com>
* cfg.c (dump_flow_info): Print bb->index, not i, for block number.
2002-05-28 Zack Weinberg <zack@codesourcery.com>
* tree.h: Forward-declare struct realvaluetype.
......
......@@ -553,7 +553,7 @@ dump_flow_info (file)
gcov_type lsum;
fprintf (file, "\nBasic block %d: first insn %d, last %d, ",
i, INSN_UID (bb->head), INSN_UID (bb->end));
bb->index, INSN_UID (bb->head), INSN_UID (bb->end));
fprintf (file, "prev %d, next %d, ",
bb->prev_bb->index, bb->next_bb->index);
fprintf (file, "loop_depth %d, count ", bb->loop_depth);
......
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