* cfgrtl.c (relink_block_chain): Add line returns in dump file.

From-SVN: r273988
This commit is contained in:
Eric Botcazou 2019-08-01 21:02:17 +00:00 committed by Eric Botcazou
parent bf321336fc
commit f3b4eae6c3
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2019-08-01 Eric Botcazou <ebotcazou@adacore.com>
* cfgrtl.c (relink_block_chain): Add line returns in dump file.
2019-08-01 Eric Botcazou <ebotcazou@adacore.com>
* cgraph.h (cgraph_edge::maybe_hot_p): Tweak comment.

View File

@ -3703,13 +3703,13 @@ relink_block_chain (bool stay_in_cfglayout_mode)
{
fprintf (dump_file, " %i ", index);
if (get_bb_original (bb))
fprintf (dump_file, "duplicate of %i ",
fprintf (dump_file, "duplicate of %i\n",
get_bb_original (bb)->index);
else if (forwarder_block_p (bb)
&& !LABEL_P (BB_HEAD (bb)))
fprintf (dump_file, "compensation ");
fprintf (dump_file, "compensation\n");
else
fprintf (dump_file, "bb %i ", bb->index);
fprintf (dump_file, "bb %i\n", bb->index);
}
}