summaryrefslogtreecommitdiff
path: root/gcc/cfg.c
diff options
context:
space:
mode:
authoraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2002-03-11 11:10:44 +0000
committeraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2002-03-11 11:10:44 +0000
commit7d3bbd11b28cbc892023fcf10699b9551a503136 (patch)
tree61352d1075d1aa20420ac0cc44dd89ec426b16e5 /gcc/cfg.c
parent39e4b33f94bc943844dca11c1081451da0bafff1 (diff)
downloadgcc-7d3bbd11b28cbc892023fcf10699b9551a503136.tar.gz
* cfg.c (dump_flow_info): Remove unused variable.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@50568 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r--gcc/cfg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfg.c b/gcc/cfg.c
index 433d10accf9..9204505d14a 100644
--- 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;