OSDN Git Service

* cfg.c (dump_flow_info): Remove unused variable.
authoraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 11 Mar 2002 11:10:44 +0000 (11:10 +0000)
committeraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 11 Mar 2002 11:10:44 +0000 (11:10 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@50568 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/cfg.c

index 8bd8b90..a88c373 100644 (file)
@@ -1,3 +1,7 @@
+2002-03-11  Andreas Jaeger  <aj@suse.de>
+
+       * cfg.c (dump_flow_info): Remove unused variable.
+
 2002-03-11  Hans-Peter Nilsson  <hp@bitrange.com>
 
        * config/mmix/mmix.c (mmix_expand_builtin_va_arg): Do all
@@ -22,7 +26,7 @@
 
        PR preprocessor/5899
        * cppinit.c (init_dependency_output): Don't ignore -dM etc.
-       
+
 2002-03-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * mbchar.c (JIS_state_table, JIS_action_table): Const-ify.
index 433d10a..9204505 100644 (file)
--- a/gcc/cfg.c
+++ b/gcc/cfg.c
@@ -1,6 +1,6 @@
 /* Control flow graph manipulation code for GNU compiler.
    Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
-   1999, 2000, 2001 Free Software Foundation, Inc.
+   1999, 2000, 2001, 2002 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
@@ -505,7 +505,7 @@ dump_flow_info (file)
   fprintf (file, "\n%d basic blocks, %d edges.\n", n_basic_blocks, n_edges);
   for (i = 0; i < n_basic_blocks; i++)
     {
-      basic_block bb = BASIC_BLOCK (i), dom_bb;
+      basic_block bb = BASIC_BLOCK (i);
       edge e;
       int sum;
       gcov_type lsum;