Cosmetic fix in delete_noop_moves

Eric Botcazou ebotcazou@adacore.com
Wed Jan 25 09:34:00 GMT 2006


I'm seeing the following line in a .combiner logfile:

deleted 4 noop movesdeleted 6 dead insns

Fixed thusly, applied to mainline as obvious.


2006-01-25  Eric Botcazou  <ebotcazou@adacore.com>

	* flow.c (delete_noop_moves): Add missing EOL to dump message.


Index: flow.c
===================================================================
--- flow.c      (revision 110162)
+++ flow.c      (working copy)
@@ -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;
 }


-- 
Eric Botcazou



More information about the Gcc-patches mailing list