InstCombine: Don't assume that m_ZExt matches an Instruction
[oota-llvm.git] / test / Transforms / InstCombine / 2008-04-29-VolatileLoadMerge.ll
index 5fb11ffb32da014081bc25a290dc981d84a75c3d..8022414d6fc9d193299b5d484a7873cb36a64533 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt < %s -instcombine -S | grep {load volatile} | count 2
+; RUN: opt < %s -instcombine -S | grep "load volatile" | count 2
 ; PR2262
 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
 target triple = "i386-apple-darwin8"
@@ -7,11 +7,11 @@ target triple = "i386-apple-darwin8"
 define i32 @main(i32 %i) nounwind  {
 entry:
        %tmp93 = icmp slt i32 %i, 10            ; <i1> [#uses=0]
-       %tmp34 = volatile load i32* @g_1, align 4               ; <i32> [#uses=1]
+       %tmp34 = load volatile i32* @g_1, align 4               ; <i32> [#uses=1]
        br i1 %tmp93, label %bb11, label %bb
 
 bb:            ; preds = %bb, %entry
-       %tmp3 = volatile load i32* @g_1, align 4                ; <i32> [#uses=1]
+       %tmp3 = load volatile i32* @g_1, align 4                ; <i32> [#uses=1]
        br label %bb11
 
 bb11:          ; preds = %bb