OSDN Git Service

PR opt/10116
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 23 Mar 2003 20:14:57 +0000 (20:14 +0000)
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 23 Mar 2003 20:14:57 +0000 (20:14 +0000)
        * ifcvt.c (find_if_block): Disallow tablejump insns outgoing
        from then_bb or else_bb after flow2.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@64750 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/ifcvt.c

index fb144ab..65799f5 100644 (file)
@@ -1,3 +1,9 @@
+2003-03-23  Richard Henderson  <rth@redhat.com>
+
+       PR opt/10116
+       * ifcvt.c (find_if_block): Disallow tablejump insns outgoing
+       from then_bb or else_bb after flow2.
+
 2003-03-23  Zack Weinberg  <zack@codesourcery.com>
 
        * configure.in: Check whether it is necessary to link against
index 0cfd06f..9236b6a 100644 (file)
@@ -2365,7 +2365,8 @@ find_if_block (ce_info)
   /* The THEN block of an IF-THEN combo must have zero or one successors.  */
   if (then_succ != NULL_EDGE
       && (then_succ->succ_next != NULL_EDGE
-          || (then_succ->flags & EDGE_COMPLEX)))
+          || (then_succ->flags & EDGE_COMPLEX)
+         || (flow2_completed && tablejump_p (then_bb->end, NULL, NULL))))
     return FALSE;
 
   /* If the THEN block has no successors, conditional execution can still
@@ -2412,7 +2413,8 @@ find_if_block (ce_info)
           && then_succ->dest == else_succ->dest
           && else_bb->pred->pred_next == NULL_EDGE
           && else_succ->succ_next == NULL_EDGE
-          && ! (else_succ->flags & EDGE_COMPLEX))
+          && ! (else_succ->flags & EDGE_COMPLEX)
+          && ! (flow2_completed && tablejump_p (else_bb->end, NULL, NULL)))
     join_bb = else_succ->dest;
 
   /* Otherwise it is not an IF-THEN or IF-THEN-ELSE combination.  */