]> gcc.gnu.org Git - gcc.git/commitdiff
* genrecog.c (write_node): Remove a useless local variable.
authorKazu Hirata <kazu@cs.umass.edu>
Wed, 28 Jan 2004 21:07:09 +0000 (21:07 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Wed, 28 Jan 2004 21:07:09 +0000 (21:07 +0000)
From-SVN: r76807

gcc/ChangeLog
gcc/genrecog.c

index f987470bb7e8b0fd4589492b2ccb88d81c74aaac..594c802eef9bab126646dc91f1a9431f8ed9987a 100644 (file)
@@ -1,3 +1,7 @@
+2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * genrecog.c (write_node): Remove a useless local variable.
+
 2004-01-28  Ian Lance Taylor  <ian@wasabisystems.com>
 
        * Makefile.in (options.c options.h): Use stamp file s-options to
index e0a225a870a1d631f6e52777b2fd28a5d3ca783c..dc756fe7644133ad02c4c46b00cd5ba8f6f28a34 100644 (file)
@@ -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      && ");
This page took 0.077871 seconds and 5 git commands to generate.