diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Transforms/InstCombine/or.ll | 14 | ||||
-rw-r--r-- | test/Transforms/InstCombine/xor2.ll | 14 |
2 files changed, 0 insertions, 28 deletions
diff --git a/test/Transforms/InstCombine/or.ll b/test/Transforms/InstCombine/or.ll index 86fca14dbd..c3526b77f6 100644 --- a/test/Transforms/InstCombine/or.ll +++ b/test/Transforms/InstCombine/or.ll @@ -350,17 +350,3 @@ define <4 x i32> @test32(<4 x i1> %and.i1352, <4 x i32> %vecinit6.i176, <4 x i32 ; CHECK: or <4 x i32> %and.i, %and.i129 } -; PR6773 -define i32 @test33(i32 %x, i32 %y, i32 %z) nounwind readnone { - %and = and i32 %y, %x - %not = xor i32 %x, -1 - %and2 = and i32 %z, %not - %xor = xor i32 %and2, %and - ret i32 %xor -; CHECK: @test33 -; CHECK: xor i32 -; CHECK: and i32 -; CHECK: xor i32 -; CHECK: ret i32 -} - diff --git a/test/Transforms/InstCombine/xor2.ll b/test/Transforms/InstCombine/xor2.ll index 27ce3bff47..67f05efa23 100644 --- a/test/Transforms/InstCombine/xor2.ll +++ b/test/Transforms/InstCombine/xor2.ll @@ -51,17 +51,3 @@ define i32 @test4(i32 %A, i32 %B) { ; CHECK: %1 = ashr i32 %A, %B ; CHECK: ret i32 %1 } - -; PR6773 -define i32 @test5(i32 %x, i32 %y, i32 %z) nounwind readnone { - %and = and i32 %y, %x - %not = xor i32 %x, -1 - %and2 = and i32 %z, %not - %or = or i32 %and2, %and - ret i32 %or -; CHECK: @test5 -; CHECK: xor i32 -; CHECK: and i32 -; CHECK: xor i32 -; CHECK: ret i32 -} |