aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-01-14 19:40:48 +0000
committerChris Lattner <sabre@nondot.org>2007-01-14 19:40:48 +0000
commit3ccebe449ec7b70b91e993783bfc0cf3ffc31b6d (patch)
treedc601f30e04da199949300f145b1af2509c6b54b
parentdcec14eb88d3020ff94aada5be829fa57124fd85 (diff)
new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33206 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Transforms/InstCombine/2007-01-14-FcmpSelf.ll6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/2007-01-14-FcmpSelf.ll b/test/Transforms/InstCombine/2007-01-14-FcmpSelf.ll
new file mode 100644
index 0000000000..3b34a7db9d
--- /dev/null
+++ b/test/Transforms/InstCombine/2007-01-14-FcmpSelf.ll
@@ -0,0 +1,6 @@
+; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep 'fcmp uno.*0.0'
+; PR1111
+define i1 %test(double %X) {
+%tmp = fcmp une double %X, %X
+ ret i1 %tmp
+}