aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/xor2.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Transforms/InstCombine/xor2.ll')
-rw-r--r--test/Transforms/InstCombine/xor2.ll14
1 files changed, 0 insertions, 14 deletions
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
-}