diff options
| author | Chris Lattner <sabre@nondot.org> | 2011-02-17 02:21:03 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2011-02-17 02:21:03 +0000 |
| commit | 0ad64291d8e916a0e1fb520a0dc86e087e7423a5 (patch) | |
| tree | 2a5a87a12e16dc443e1766e0b5645f0fba76277d /llvm/test/Transforms/InstCombine/add2.ll | |
| parent | b302f8dae6ab00abe22735cd07c7b2015ad4ba43 (diff) | |
| download | bcm5719-llvm-0ad64291d8e916a0e1fb520a0dc86e087e7423a5.tar.gz bcm5719-llvm-0ad64291d8e916a0e1fb520a0dc86e087e7423a5.zip | |
filecheckize
llvm-svn: 125710
Diffstat (limited to 'llvm/test/Transforms/InstCombine/add2.ll')
| -rw-r--r-- | llvm/test/Transforms/InstCombine/add2.ll | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/llvm/test/Transforms/InstCombine/add2.ll b/llvm/test/Transforms/InstCombine/add2.ll index 1cbdd3a3cd5..a382142d73a 100644 --- a/llvm/test/Transforms/InstCombine/add2.ll +++ b/llvm/test/Transforms/InstCombine/add2.ll @@ -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 } |

