Commit f3b4eae6 by Eric Botcazou Committed by Eric Botcazou

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

From-SVN: r273988
parent bf321336
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.
* cgraph.c (cgraph_edge::maybe_hot_p): Likewise. Remove useless test.
* predict.c (maybe_hot_count_p): Likewise.
......
......@@ -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);
}
}
......
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