diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-08-05 21:23:45 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-08-05 21:23:45 +0000 |
commit | 021507be8244aadf7767b1b8a9c26d4c47817a74 (patch) | |
tree | 25470c6763d2e7ff2b403c43eb98925d047fc394 /test/Transforms/InstCombine/2008-07-08-AndICmp.ll | |
parent | 71ac0be6bb8ef79b79b3b9874cb2886fbb04d2d5 (diff) | |
download | external_llvm-021507be8244aadf7767b1b8a9c26d4c47817a74.zip external_llvm-021507be8244aadf7767b1b8a9c26d4c47817a74.tar.gz external_llvm-021507be8244aadf7767b1b8a9c26d4c47817a74.tar.bz2 |
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/2008-07-08-AndICmp.ll')
-rw-r--r-- | test/Transforms/InstCombine/2008-07-08-AndICmp.ll | 10 |
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 c600241..0000000 --- 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 -} |