Re: [PATCH] Don't dump bb details when removing a block

2014-04-11 Thread Richard Biener
On Tue, Apr 8, 2014 at 6:55 PM, Teresa Johnson tejohn...@google.com wrote: This patch removes the printing of details for BBs that are being removed. When printing bb details, dump_bb_info will invoke check_bb_profile, which will flag spurious profile insanities in the removed bb since the

Re: [PATCH] Don't dump bb details when removing a block

2014-04-11 Thread Bernd Edlinger
Hi Teresa, @@ -1947,7 +1947,7 @@ remove_bb (basic_block bb) fprintf (dump_file, Removing basic block %d\n, bb-index); if (dump_flags TDF_DETAILS) { - dump_bb (dump_file, bb, 0, dump_flags); + dump_bb (dump_file, bb, 0, dump_flags ~TDF_DETAILS);

Re: [PATCH] Don't dump bb details when removing a block

2014-04-11 Thread Teresa Johnson
On Fri, Apr 11, 2014 at 1:36 AM, Bernd Edlinger bernd.edlin...@hotmail.de wrote: Hi Teresa, @@ -1947,7 +1947,7 @@ remove_bb (basic_block bb) fprintf (dump_file, Removing basic block %d\n, bb-index); if (dump_flags TDF_DETAILS) { - dump_bb (dump_file, bb, 0,

[PATCH] Don't dump bb details when removing a block

2014-04-08 Thread Teresa Johnson
This patch removes the printing of details for BBs that are being removed. When printing bb details, dump_bb_info will invoke check_bb_profile, which will flag spurious profile insanities in the removed bb since the incoming edges have already been removed. This makes it harder to identify true