flow.c (dump_bb): Remove unused third argument to call to fprintf when...
authorDiego Novillo <dnovillo@redhat.com>
Fri, 29 Jun 2001 03:30:17 +0000 (03:30 +0000)
committerDiego Novillo <dnovillo@gcc.gnu.org>
Fri, 29 Jun 2001 03:30:17 +0000 (23:30 -0400)
2001-06-28  Diego Novillo  <dnovillo@redhat.com>

      * flow.c (dump_bb): Remove unused third argument to call
      to fprintf when displaying the basic block header.

From-SVN: r43649

gcc/ChangeLog
gcc/flow.c

index fd30ddb31af12a935ea6348980ad3243e8e973e3..11d9fd8e2cb1fc81142b49d4d3d38289d9035b75 100644 (file)
@@ -1,3 +1,8 @@
+2001-06-28  Diego Novillo  <dnovillo@redhat.com>
+
+      * flow.c (dump_bb): Remove unused third argument to call
+      to fprintf when displaying the basic block header.
+
 2001-06-28  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
            Jeff Law <law@redhat.com>
 
index ae0c58af8724689e9c2452a9f153335eba867bda..62f177705aa885d85a54d0518c76076fe4c09cb3 100644 (file)
@@ -6823,7 +6823,7 @@ dump_bb (bb, outf)
   edge e;
 
   fprintf (outf, ";; Basic block %d, loop depth %d, count ",
-          bb->index, bb->loop_depth, bb->count);
+          bb->index, bb->loop_depth);
   fprintf (outf, HOST_WIDEST_INT_PRINT_DEC, (HOST_WIDEST_INT) bb->count);
   putc ('\n', outf);