aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1994-03-25 14:13:46 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1994-03-25 14:13:46 -0500
commit87bd049049eb74a30888efb63c2b5c2fccca4fcf (patch)
tree2e6e2ee7d9367d7ce927e24ed70d74a927b443a0 /gcc
parent24f89e3de0263d0008143de34e2abaa3c8535c81 (diff)
downloadgcc-87bd049049eb74a30888efb63c2b5c2fccca4fcf.zip
gcc-87bd049049eb74a30888efb63c2b5c2fccca4fcf.tar.gz
gcc-87bd049049eb74a30888efb63c2b5c2fccca4fcf.tar.bz2
(break_out_subroutines): Remove decl of unused variable.
From-SVN: r6885
Diffstat (limited to 'gcc')
-rw-r--r--gcc/genrecog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/genrecog.c b/gcc/genrecog.c
index fb7a3a1..c0d31d2 100644
--- a/gcc/genrecog.c
+++ b/gcc/genrecog.c
@@ -1,5 +1,5 @@
/* Generate code from machine description to recognize rtl as insns.
- Copyright (C) 1987, 1988, 1992, 1993 Free Software Foundation, Inc.
+ Copyright (C) 1987, 1988, 1992, 1993, 1994 Free Software Foundation, Inc.
This file is part of GNU CC.
@@ -955,7 +955,7 @@ break_out_subroutines (head, type, initial)
int initial;
{
int size = 0;
- struct decision *node, *sub;
+ struct decision *sub;
for (sub = head.first; sub; sub = sub->next)
size += 1 + break_out_subroutines (sub->success, type, 0);