summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-07-14 06:16:35 +0000
committerChris Lattner <sabre@nondot.org>2010-07-14 06:16:35 +0000
commit07c9b64719f913015d23c7b6d1e0f135ddc3d018 (patch)
treeb24029c5e1956d4b64a8a1487019c3bf4949316d /test/Transforms/InstCombine
parent7e185af9302cfc5e9dffdba65c8a99f9f57b4076 (diff)
downloadllvm-07c9b64719f913015d23c7b6d1e0f135ddc3d018.tar.gz
llvm-07c9b64719f913015d23c7b6d1e0f135ddc3d018.tar.bz2
llvm-07c9b64719f913015d23c7b6d1e0f135ddc3d018.tar.xz
revert r108320, I see the failures now...
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108322 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine')
-rw-r--r--test/Transforms/InstCombine/or.ll13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/Transforms/InstCombine/or.ll b/test/Transforms/InstCombine/or.ll
index 0246925bd8..c3526b77f6 100644
--- a/test/Transforms/InstCombine/or.ll
+++ b/test/Transforms/InstCombine/or.ll
@@ -350,16 +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
- %or = or i32 %and2, %and
- ret i32 %or
-; CHECK: @test33
-; CHECK-NEXT: xor i32
-; CHECK-NEXT: and i32
-; CHECK-NEXT: xor i32
-; CHECK-NEXT: ret i32
-}