flow.c (delete_noop_moves): Add missing EOL to dump message.
authorEric Botcazou <ebotcazou@adacore.com>
Wed, 25 Jan 2006 07:58:35 +0000 (07:58 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Wed, 25 Jan 2006 07:58:35 +0000 (07:58 +0000)
* flow.c (delete_noop_moves): Add missing EOL to dump message.

From-SVN: r110207

gcc/ChangeLog
gcc/flow.c

index 3aea0df..254c0f4 100644 (file)
@@ -1,3 +1,7 @@
+2006-01-25  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * flow.c (delete_noop_moves): Add missing EOL to dump message.
+
 2006-01-25  Richard Sandiford  <richard@codesourcery.com>
 
        * genattrtab.c (gen_bypass): Allow bypasses to contain whitespace.
index 94595da..c1b66f8 100644 (file)
@@ -814,8 +814,10 @@ delete_noop_moves (void)
            }
        }
     }
+
   if (nnoops && dump_file)
-    fprintf (dump_file, "deleted %i noop moves", nnoops);
+    fprintf (dump_file, "deleted %i noop moves\n", nnoops);
+
   return nnoops;
 }