Commit ecd14de9 by Xinliang David Li Committed by Xinliang David Li

Support slim switch for cfg graph dump

From-SVN: r198201
parent 2a30e7e2
2013-04-23 Xinliang David Li <davidxl@google.com>
* cfghhooks.c (dump_bb_for_graph): Support 'slim' graph dump.
2013-04-23 Richard Biener <rguenther@suse.de>
PR middle-end/57036
......
......@@ -313,7 +313,8 @@ dump_bb_for_graph (pretty_printer *pp, basic_block bb)
pp_printf (pp, "COUNT:" HOST_WIDEST_INT_PRINT_DEC, bb->count);
pp_printf (pp, " FREQ:%i |", bb->frequency);
pp_write_text_to_stream (pp);
cfg_hooks->dump_bb_for_graph (pp, bb);
if (!(dump_flags & TDF_SLIM))
cfg_hooks->dump_bb_for_graph (pp, bb);
}
/* Dump the complete CFG to FILE. FLAGS are the TDF_* flags in dumpfile.h. */
......
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