Revert r108136 until I figure out why it broke selfhost.
[oota-llvm.git] / test / Transforms / InstCombine / or.ll
index 86fca14dbdf2314b823207eab1308821e93ea0b2..c3526b77f6a5b15948bade8fe8c4a77a7980ff12 100644 (file)
@@ -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
-}
-