* cfgrtl.c (relink_block_chain): Add line returns in dump file.
authorEric Botcazou <ebotcazou@adacore.com>
Thu, 1 Aug 2019 21:02:17 +0000 (21:02 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Thu, 1 Aug 2019 21:02:17 +0000 (21:02 +0000)
From-SVN: r273988

gcc/ChangeLog
gcc/cfgrtl.c

index ab92da57ea6df97e278835de5207f3ab5fdc8b7f..1186e07c188d29dcfef60f13aa30d7e3c9a837ba 100644 (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.
index bdef400537d6b54d13a37f35898c33780a9eead9..1f222aea5d153e1c9f0270f50326c68ee4386bfa 100644 (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);
        }
     }