Commit 916b9d4b by Eric Botcazou Committed by Eric Botcazou

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

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

From-SVN: r110207
parent b9aa59fb
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> 2006-01-25 Richard Sandiford <richard@codesourcery.com>
* genattrtab.c (gen_bypass): Allow bypasses to contain whitespace. * genattrtab.c (gen_bypass): Allow bypasses to contain whitespace.
......
...@@ -814,8 +814,10 @@ delete_noop_moves (void) ...@@ -814,8 +814,10 @@ delete_noop_moves (void)
} }
} }
} }
if (nnoops && dump_file) if (nnoops && dump_file)
fprintf (dump_file, "deleted %i noop moves", nnoops); fprintf (dump_file, "deleted %i noop moves\n", nnoops);
return nnoops; return nnoops;
} }
......
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