summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2011-03-31 10:46:03 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2011-03-31 10:46:03 +0000
commit00e00d693c3991d85ffebf305ddbfd5dfb99ead6 (patch)
treee2176c3d0f03bd1d85a82eb479afafecd38319ed /test
parent68b4bd0a63156a9f57210243bc5a8959e93b24fa (diff)
downloadllvm-00e00d693c3991d85ffebf305ddbfd5dfb99ead6.tar.gz
llvm-00e00d693c3991d85ffebf305ddbfd5dfb99ead6.tar.bz2
llvm-00e00d693c3991d85ffebf305ddbfd5dfb99ead6.tar.xz
InstCombine: Fix transform to use the swapped predicate.
Thanks Frits! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128628 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Transforms/InstCombine/fcmp.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/InstCombine/fcmp.ll b/test/Transforms/InstCombine/fcmp.ll
index 66607ea001..b41cdfa7cf 100644
--- a/test/Transforms/InstCombine/fcmp.ll
+++ b/test/Transforms/InstCombine/fcmp.ll
@@ -44,7 +44,7 @@ define i1 @test5(float %a) nounwind {
define i1 @test6(float %x, float %y) nounwind {
%neg1 = fsub float -0.000000e+00, %x
%neg2 = fsub float -0.000000e+00, %y
- %cmp = fcmp ogt float %neg1, %neg2
+ %cmp = fcmp olt float %neg1, %neg2
ret i1 %cmp
; CHECK: @test6
; CHECK-NEXT: fcmp ogt float %x, %y