summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/sse41-blend.ll
diff options
context:
space:
mode:
authorBruno Cardoso Lopes <bruno.cardoso@gmail.com>2011-09-12 21:24:07 +0000
committerBruno Cardoso Lopes <bruno.cardoso@gmail.com>2011-09-12 21:24:07 +0000
commit457d53d9cedb2add5bb80dc7c77a8bcc602877a2 (patch)
treed74bde38bda1edc2d8f3d27adaf0e912f2a2f473 /test/CodeGen/X86/sse41-blend.ll
parentfd92d2e106acfbf13ed29b5d15f3a690cd8699b2 (diff)
downloadllvm-457d53d9cedb2add5bb80dc7c77a8bcc602877a2.tar.gz
llvm-457d53d9cedb2add5bb80dc7c77a8bcc602877a2.tar.bz2
llvm-457d53d9cedb2add5bb80dc7c77a8bcc602877a2.tar.xz
Revert the wrong part of r139528, and fix testcases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139541 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/sse41-blend.ll')
-rw-r--r--test/CodeGen/X86/sse41-blend.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/sse41-blend.ll b/test/CodeGen/X86/sse41-blend.ll
index aba2c129e3..ebbcdfae47 100644
--- a/test/CodeGen/X86/sse41-blend.ll
+++ b/test/CodeGen/X86/sse41-blend.ll
@@ -47,7 +47,7 @@ define <16 x i8> @vsel_i8(<16 x i8> %v1, <16 x i8> %v2) {
;; TEST blend + compares
; CHECK: A
define <2 x double> @A(<2 x double> %x, <2 x double> %y) {
- ; CHECK: cmpltpd
+ ; CHECK: cmplepd
; CHECK: blendvpd
%max_is_x = fcmp oge <2 x double> %x, %y
%max = select <2 x i1> %max_is_x, <2 x double> %x, <2 x double> %y
@@ -56,7 +56,7 @@ define <2 x double> @A(<2 x double> %x, <2 x double> %y) {
; CHECK: B
define <2 x double> @B(<2 x double> %x, <2 x double> %y) {
- ; CHECK: cmplepd
+ ; CHECK: cmpltpd
; CHECK: blendvpd
%max_is_x = fcmp ogt <2 x double> %x, %y
%max = select <2 x i1> %max_is_x, <2 x double> %x, <2 x double> %y