X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FTransforms%2FInstCombine%2F2008-04-29-VolatileLoadDontMerge.ll;h=af662bda1e6e97303c154f7d768737b54489ea04;hb=4635abb06529379bf2641b26d07d29aed5ce59f4;hp=a24f3071c9ac74128e228be180876c559d725bc6;hpb=f03bb260c90ad013aa4e55af36382875011c95b8;p=oota-llvm.git diff --git a/test/Transforms/InstCombine/2008-04-29-VolatileLoadDontMerge.ll b/test/Transforms/InstCombine/2008-04-29-VolatileLoadDontMerge.ll index a24f3071c9a..af662bda1e6 100644 --- a/test/Transforms/InstCombine/2008-04-29-VolatileLoadDontMerge.ll +++ b/test/Transforms/InstCombine/2008-04-29-VolatileLoadDontMerge.ll @@ -1,4 +1,4 @@ -; RUN: opt < %s -instcombine -S | grep {load volatile} | count 2 +; RUN: opt < %s -instcombine -S | grep "load volatile" | count 2 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" @g_1 = internal global i32 0 ; [#uses=3] @@ -6,17 +6,17 @@ target triple = "i386-apple-darwin8" define i32 @main() nounwind { entry: %tmp93 = icmp slt i32 0, 10 ; [#uses=0] - %tmp34 = volatile load i32* @g_1, align 4 ; [#uses=1] + %tmp34 = load volatile i32, i32* @g_1, align 4 ; [#uses=1] br label %bb bb: ; preds = %bb, %entry %b.0.reg2mem.0 = phi i32 [ 0, %entry ], [ %tmp6, %bb ] ; [#uses=1] %tmp3.reg2mem.0 = phi i32 [ %tmp34, %entry ], [ %tmp3, %bb ] ; [#uses=1] %tmp4 = add i32 %tmp3.reg2mem.0, 5 ; [#uses=1] - volatile store i32 %tmp4, i32* @g_1, align 4 + store volatile i32 %tmp4, i32* @g_1, align 4 %tmp6 = add i32 %b.0.reg2mem.0, 1 ; [#uses=2] %tmp9 = icmp slt i32 %tmp6, 10 ; [#uses=1] - %tmp3 = volatile load i32* @g_1, align 4 ; [#uses=1] + %tmp3 = load volatile i32, i32* @g_1, align 4 ; [#uses=1] br i1 %tmp9, label %bb, label %bb11 bb11: ; preds = %bb