filecheckize
authorChris Lattner <sabre@nondot.org>
Thu, 17 Feb 2011 02:21:03 +0000 (02:21 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 17 Feb 2011 02:21:03 +0000 (02:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125710 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/add2.ll

index 1cbdd3a3cd54ffb8d8ec1ef5ca0e2cf331a01af7..a382142d73a3b6cb0dee94fe472e12fc452ed0cc 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt < %s -instcombine -S | not grep add
+; RUN: opt < %s -instcombine -S | FileCheck %s
 
 define i64 @test1(i64 %A, i32 %B) {
         %tmp12 = zext i32 %B to i64
@@ -6,19 +6,30 @@ define i64 @test1(i64 %A, i32 %B) {
         %tmp5 = add i64 %tmp3, %A
         %tmp6 = and i64 %tmp5, 123
         ret i64 %tmp6
+; CHECK: @test1
+; CHECK-NEXT: and i64 %A, 123
+; CHECK-NEXT: ret i64
 }
 
-define i32 @test3(i32 %A) {
+define i32 @test2(i32 %A) {
   %B = and i32 %A, 7
   %C = and i32 %A, 32
   %F = add i32 %B, %C
   ret i32 %F
+; CHECK: @test2
+; CHECK-NEXT: and i32 %A, 39
+; CHECK-NEXT: ret i32
 }
 
-define i32 @test4(i32 %A) {
+define i32 @test3(i32 %A) {
   %B = and i32 %A, 128
   %C = lshr i32 %A, 30
   %F = add i32 %B, %C
   ret i32 %F
+; CHECK: @test3
+; CHECK-NEXT: and
+; CHECK-NEXT: lshr
+; CHECK-NEXT: or i32 %B, %C
+; CHECK-NEXT: ret i32
 }