diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2010-07-12 12:35:49 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2010-07-12 12:35:49 +0000 |
commit | 0cc4ed1ca504c9e5631d16ababb8baceb4fce6ea (patch) | |
tree | 1dc0a67006fc46945fcc529df312ed2b84fa28a5 /test/Transforms/InstCombine/or.ll | |
parent | 110b75aa7572d3b59b308da7ec1d759e86788f97 (diff) | |
download | external_llvm-0cc4ed1ca504c9e5631d16ababb8baceb4fce6ea.zip external_llvm-0cc4ed1ca504c9e5631d16ababb8baceb4fce6ea.tar.gz external_llvm-0cc4ed1ca504c9e5631d16ababb8baceb4fce6ea.tar.bz2 |
Revert r108136 until I figure out why it broke selfhost.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108139 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine/or.ll')
-rw-r--r-- | test/Transforms/InstCombine/or.ll | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/Transforms/InstCombine/or.ll b/test/Transforms/InstCombine/or.ll index 86fca14..c3526b7 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 -} - |