filecheckize
authorChris Lattner <sabre@nondot.org>
Thu, 7 Jan 2010 23:42:23 +0000 (23:42 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 7 Jan 2010 23:42:23 +0000 (23:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92963 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/shift-sra.ll

index 449278544d1f1cda302efe8d8ad2ae039dc01c5e..c209328a8001df84b4d7261edf1aed34fac0cb65 100644 (file)
@@ -1,6 +1,4 @@
-; RUN: opt < %s -instcombine -S | \
-; RUN:    grep {lshr i32} | count 2
-; RUN: opt < %s -instcombine -S | not grep ashr
+; RUN: opt < %s -instcombine -S | FileCheck %s
 
 
 define i32 @test1(i32 %X, i8 %A) {
@@ -9,6 +7,8 @@ define i32 @test1(i32 %X, i8 %A) {
         %Y = ashr i32 %X, %shift.upgrd.1                ; <i32> [#uses=1]
         %Z = and i32 %Y, 1              ; <i32> [#uses=1]
         ret i32 %Z
+; CHECK: @test1
+; CHECK: lshr i32 %X, %shift.upgrd.1 
 }
 
 define i32 @test2(i8 %tmp) {
@@ -16,4 +16,6 @@ define i32 @test2(i8 %tmp) {
         %tmp4 = add i32 %tmp3, 7                ; <i32> [#uses=1]
         %tmp5 = ashr i32 %tmp4, 3               ; <i32> [#uses=1]
         ret i32 %tmp5
+; CHECK: @test2
+; CHECK: lshr i32 %tmp4, 3
 }