summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2008-08-05 21:23:45 +0000
committerBill Wendling <isanbard@gmail.com>2008-08-05 21:23:45 +0000
commit021507be8244aadf7767b1b8a9c26d4c47817a74 (patch)
tree25470c6763d2e7ff2b403c43eb98925d047fc394 /test/Transforms/InstCombine
parent71ac0be6bb8ef79b79b3b9874cb2886fbb04d2d5 (diff)
downloadllvm-021507be8244aadf7767b1b8a9c26d4c47817a74.tar.gz
llvm-021507be8244aadf7767b1b8a9c26d4c47817a74.tar.bz2
llvm-021507be8244aadf7767b1b8a9c26d4c47817a74.tar.xz
Revert r53282. This was causing a miscompile on Linux. Also, the transformation
looks bogus. Please see PR2629 for details on why this is breaking things. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54372 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine')
-rw-r--r--test/Transforms/InstCombine/2008-07-08-AndICmp.ll10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/Transforms/InstCombine/2008-07-08-AndICmp.ll b/test/Transforms/InstCombine/2008-07-08-AndICmp.ll
deleted file mode 100644
index c600241314..0000000000
--- a/test/Transforms/InstCombine/2008-07-08-AndICmp.ll
+++ /dev/null
@@ -1,10 +0,0 @@
-; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep icmp | count 1
-; PR2330
-
-define i1 @foo(i32 %a, i32 %b) nounwind {
-entry:
- icmp ult i32 %a, 8 ; <i1>:0 [#uses=1]
- icmp ult i32 %b, 8 ; <i1>:1 [#uses=1]
- and i1 %1, %0 ; <i1>:2 [#uses=1]
- ret i1 %2
-}