re PR tree-optimization/21116 (tree-ssa-phiopt.c:193 has wrong translation from EDGE_...
authorKazu Hirata <kazu@cs.umass.edu>
Wed, 20 Apr 2005 13:19:17 +0000 (13:19 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Wed, 20 Apr 2005 13:19:17 +0000 (13:19 +0000)
PR tree-optimization/21116
* tree-ssa-phiopt.c: Fix a typo.

From-SVN: r98457

gcc/ChangeLog
gcc/tree-ssa-phiopt.c

index 298e67a5178ab0e51087e69cf338009c5a8e4fe6..03c3961fde14568e0c5c11170ce98d8749f8f01d 100644 (file)
@@ -2,6 +2,9 @@
 
        * tree-ssa-phiopt.c: Fix comment typos.
 
+       PR tree-optimization/21116
+       * tree-ssa-phiopt.c: Fix a typo.
+
 2005-04-19  Richard Henderson  <rth@redhat.com>
 
        * builtins.c (expand_builtin_sync_operation): Revert last change.
index bc284ece86ff84b19a9c674f37e3f7aa897ee71e..ff611e61b592980db6e7a7b5077768af3609ba1e 100644 (file)
@@ -202,7 +202,7 @@ tree_ssa_phiopt (void)
       e1 = EDGE_SUCC (bb1, 0);
 
       /* Make sure that bb1 is just a fall through.  */
-      if (!single_succ_p (bb1) > 1
+      if (!single_succ_p (bb1)
          || (e1->flags & EDGE_FALLTHRU) == 0)
         continue;