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
This commit is contained in:
Eric Botcazou 2006-01-25 07:58:35 +00:00 committed by Eric Botcazou
parent b9aa59fb63
commit 916b9d4bbc
2 changed files with 7 additions and 1 deletions

View 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.

View 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;
}