diff options
Diffstat (limited to 'test/Transforms/InstCombine/and.ll')
| -rw-r--r-- | test/Transforms/InstCombine/and.ll | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/test/Transforms/InstCombine/and.ll b/test/Transforms/InstCombine/and.ll index a2715c12fa88f..8ef7870891f0e 100644 --- a/test/Transforms/InstCombine/and.ll +++ b/test/Transforms/InstCombine/and.ll @@ -172,19 +172,6 @@ define i8 @test16(i8 %A) { ret i8 %C } -;; ~(~X & Y) --> (X | ~Y) -define i8 @test17(i8 %X, i8 %Y) { -; CHECK-LABEL: @test17( -; CHECK-NEXT: [[Y_NOT:%.*]] = xor i8 %Y, -1 -; CHECK-NEXT: [[D:%.*]] = or i8 [[Y_NOT]], %X -; CHECK-NEXT: ret i8 [[D]] -; - %B = xor i8 %X, -1 - %C = and i8 %B, %Y - %D = xor i8 %C, -1 - ret i8 %D -} - define i1 @test18(i32 %A) { ; CHECK-LABEL: @test18( ; CHECK-NEXT: [[C:%.*]] = icmp ugt i32 %A, 127 |
