summaryrefslogtreecommitdiff
path: root/test/Transforms/InstSimplify
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2011-01-01 20:08:02 +0000
committerDuncan Sands <baldrick@free.fr>2011-01-01 20:08:02 +0000
commit124708d9b47cc53cb11d8bfed75b241b6eec86d4 (patch)
tree95ef296ccd7d1bb64578c83de682eef3f1eff188 /test/Transforms/InstSimplify
parenta64cbf067d6315522d13b606774bbadb4e328d1b (diff)
downloadllvm-124708d9b47cc53cb11d8bfed75b241b6eec86d4.tar.gz
llvm-124708d9b47cc53cb11d8bfed75b241b6eec86d4.tar.bz2
llvm-124708d9b47cc53cb11d8bfed75b241b6eec86d4.tar.xz
Revert commit 122654 at the request of Chris, who reckons that instsimplify
is the wrong hammer for this nail, and is probably right. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122661 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstSimplify')
-rw-r--r--test/Transforms/InstSimplify/2010-12-31-ValueNumber.ll9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/Transforms/InstSimplify/2010-12-31-ValueNumber.ll b/test/Transforms/InstSimplify/2010-12-31-ValueNumber.ll
deleted file mode 100644
index 5fd94aa78a..0000000000
--- a/test/Transforms/InstSimplify/2010-12-31-ValueNumber.ll
+++ /dev/null
@@ -1,9 +0,0 @@
-; RUN: opt < %s -instsimplify -S | FileCheck %s
-define i1 @g(i32 %a) nounwind readnone {
-; CHECK: @g
- %add = shl i32 %a, 1
- %mul = shl i32 %a, 1
- %cmp = icmp ugt i32 %add, %mul
- ret i1 %cmp
-; CHECK: ret i1 false
-}