aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2019-08-01 21:02:17 +0000
committerEric Botcazou <ebotcazou@adacore.com>2019-08-01 21:02:17 +0000
commit6988a2ec402eb06621fe660227ae57838a3662a1 (patch)
tree523fa313fa0cf156c914ea6fb0f8f27b76fac842 /gcc
parent28b3a5373ad0719f606a91b96806d351b52a7524 (diff)
* cfgrtl.c (relink_block_chain): Add line returns in dump file.
git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@273988 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/cfgrtl.c6
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ab92da57ea6..1186e07c188 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,9 @@
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.
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c
index bdef400537d..1f222aea5d1 100644
--- a/gcc/cfgrtl.c
+++ b/gcc/cfgrtl.c
@@ -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);
}
}