]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR bootstrap/40408 (bootstrap boken again!)
authorIan Lance Taylor <iant@google.com>
Wed, 10 Jun 2009 22:46:38 +0000 (22:46 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Wed, 10 Jun 2009 22:46:38 +0000 (22:46 +0000)
PR bootstrap/40408
* graphite.c (add_conditions_to_domain): Change SWITCH_EXPR to
GIMPLE_SWITCH.

From-SVN: r148356

gcc/ChangeLog
gcc/graphite.c

index ff17eab7411f4f1185410eb3106ed3f14d34202f..461458c23d1076a9f172d38d31c2542e85269b3a 100644 (file)
@@ -1,3 +1,9 @@
+2009-06-10  Ian Lance Taylor  <iant@google.com>
+
+       PR bootstrap/40408
+       * graphite.c (add_conditions_to_domain): Change SWITCH_EXPR to
+       GIMPLE_SWITCH.
+
 2009-06-10  Revital Eres  <eres@il.ibm.com>
 
        * passes.c (init_optimization_passes): Reschedule
index 4e6919736cec431f70e2d89ddc9d3dd524de9a94..90e11acb3cc15adee5071f500c4c7247d2f398f3 100644 (file)
@@ -3224,7 +3224,7 @@ add_conditions_to_domain (graphite_bb_p gb)
               }
           break;
           }
-        case SWITCH_EXPR:
+        case GIMPLE_SWITCH:
           /* Switch statements are not supported right know.  */
           gcc_unreachable ();
           break;