convert to filecheck
authorChris Lattner <sabre@nondot.org>
Mon, 2 Nov 2009 01:58:03 +0000 (01:58 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 2 Nov 2009 01:58:03 +0000 (01:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85770 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/store.ll

index d6f916dc8c7f209fcd3bf227a3d44280c6c8b24c..3b8c0ab3030db268614e91aafd2c09ced5ff104b 100644 (file)
@@ -1,11 +1,13 @@
-; RUN: opt < %s -instcombine -S | \
-; RUN:   grep -v {store.*,.*null} | not grep store
+; RUN: opt < %s -instcombine -S | FileCheck %s
 
 define void @test1(i32* %P) {
         store i32 undef, i32* %P
         store i32 123, i32* undef
         store i32 124, i32* null
         ret void
+; CHECK: @test1(
+; CHECK-NEXT: store i32 undef, i32* null
+; CHECK-NEXT: ret void
 }
 
 define void @test2(i32* %P) {
@@ -13,5 +15,7 @@ define void @test2(i32* %P) {
         %Y = add i32 %X, 0              ; <i32> [#uses=1]
         store i32 %Y, i32* %P
         ret void
+; CHECK: @test2
+; CHECK-NEXT: ret void
 }