[SystemZ] Add test missing from r186148
[oota-llvm.git] / test / Transforms / InstCombine / volatile_store.ll
index 30ef8cbcd964fe21ff677b63b3c371588b4c364c..7cab199a58f4764a34adb8ebd1dbd07495f1c496 100644 (file)
@@ -1,12 +1,12 @@
-; RUN: opt %s -instcombine | llvm-dis | grep {volatile store}
-; RUN: opt %s -instcombine | llvm-dis | grep {volatile load}
+; RUN: opt < %s -instcombine -S | grep "store volatile"
+; RUN: opt < %s -instcombine -S | grep "load volatile"
 
 @x = weak global i32 0         ; <i32*> [#uses=2]
 
 define void @self_assign_1() {
 entry:
-       %tmp = volatile load i32* @x            ; <i32> [#uses=1]
-       volatile store i32 %tmp, i32* @x
+       %tmp = load volatile i32* @x            ; <i32> [#uses=1]
+       store volatile i32 %tmp, i32* @x
        br label %return
 
 return:                ; preds = %entry