OSDN Git Service

2001-06-28 Diego Novillo <dnovillo@redhat.com>
authordnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 29 Jun 2001 03:30:17 +0000 (03:30 +0000)
committerdnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 29 Jun 2001 03:30:17 +0000 (03:30 +0000)
      * flow.c (dump_bb): Remove unused third argument to call
      to fprintf when displaying the basic block header.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43649 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/flow.c

index fd30ddb..11d9fd8 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 ae0c58a..62f1777 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);