* cfg.c (dump_bb): Dump entry edges.

From-SVN: r75806
This commit is contained in:
Zdenek Dvorak 2004-01-13 17:48:19 +01:00 committed by Zdenek Dvorak
parent f954388e83
commit 9405162eba
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2004-01-13 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
* cfg.c (dump_bb): Dump entry edges.
2004-01-13 Richard Earnshaw <rearnsha@arm.com>
* arm.c (thumb_legitimate_address_p): Only allow constant pool

View File

@ -966,6 +966,10 @@ dump_bb (basic_block bb, FILE *outf)
bb->index, bb->loop_depth);
fprintf (outf, HOST_WIDEST_INT_PRINT_DEC, (HOST_WIDEST_INT) bb->count);
putc ('\n', outf);
fputs (";; Predecessors: ", outf);
for (e = bb->pred; e; e = e->pred_next)
dump_edge_info (outf, e, 0);
putc ('\n', outf);
cfg_hooks->dump_bb (bb, outf);