aboutsummaryrefslogtreecommitdiff
path: root/gcc/cfg.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2002-05-26 21:05:53 +0200
committerAndreas Jaeger <aj@gcc.gnu.org>2002-05-26 21:05:53 +0200
commit291cc0febcb556ea85c0fd0cd67c95b4ced7bc23 (patch)
tree5820d5eb76080de54d8662f1150c5a93a8a6b70d /gcc/cfg.c
parent913189081f3bc7eebcf6bd13b9e344ba9cd2f9a3 (diff)
downloadgcc-291cc0febcb556ea85c0fd0cd67c95b4ced7bc23.zip
gcc-291cc0febcb556ea85c0fd0cd67c95b4ced7bc23.tar.gz
gcc-291cc0febcb556ea85c0fd0cd67c95b4ced7bc23.tar.bz2
* cfg.c (dump_flow_info): Remove extra argument to fprintf.
From-SVN: r53901
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r--gcc/cfg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfg.c b/gcc/cfg.c
index d6c9f0d..948a345 100644
--- a/gcc/cfg.c
+++ b/gcc/cfg.c
@@ -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)