* cfg.c (dump_flow_info): Remove extra argument to fprintf.

From-SVN: r53901
This commit is contained in:
Andreas Jaeger 2002-05-26 21:05:53 +02:00 committed by Andreas Jaeger
parent 913189081f
commit 291cc0febc
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-05-26 Andreas Jaeger <aj@suse.de>
* cfg.c (dump_flow_info): Remove extra argument to fprintf.
2002-05-26 Neil Booth <neil@daikokuya.demon.co.uk>
* cppexp.c (possible_sum_sign, integer_overflow, left_shift,

View File

@ -555,7 +555,7 @@ dump_flow_info (file)
fprintf (file, ", maybe hot");
if (probably_never_executed_bb_p (bb))
fprintf (file, ", probably never executed");
fprintf (file, ".\n", bb->frequency);
fprintf (file, ".\n");
fprintf (file, "Predecessors: ");
for (e = bb->pred; e; e = e->pred_next)