aboutsummaryrefslogtreecommitdiff
path: root/gcc/genrecog.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-01-28 21:07:09 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-01-28 21:07:09 +0000
commitbe2c39f82c65397954ff5f4e83da6b87814dbc48 (patch)
treef144fede8aa984eb96bbad9fd13562a4aa69f330 /gcc/genrecog.c
parentde81ffd4c7ab97a0019857b0d9b7dd7f7721c583 (diff)
downloadgcc-be2c39f82c65397954ff5f4e83da6b87814dbc48.zip
gcc-be2c39f82c65397954ff5f4e83da6b87814dbc48.tar.gz
gcc-be2c39f82c65397954ff5f4e83da6b87814dbc48.tar.bz2
* genrecog.c (write_node): Remove a useless local variable.
From-SVN: r76807
Diffstat (limited to 'gcc/genrecog.c')
-rw-r--r--gcc/genrecog.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/genrecog.c b/gcc/genrecog.c
index e0a225a..dc756fe 100644
--- a/gcc/genrecog.c
+++ b/gcc/genrecog.c
@@ -2152,11 +2152,8 @@ write_node (struct decision *p, int depth,
while ((test = test->next) != NULL)
{
- int uncond2;
-
last_test = test;
- uncond2 = is_unconditional (test, subroutine_type);
- if (uncond2 != 0)
+ if (is_unconditional (test, subroutine_type))
break;
printf ("\n && ");