aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/2011-09-18-sse2cmp.ll
diff options
context:
space:
mode:
authorNadav Rotem <nadav.rotem@intel.com>2011-09-18 14:57:03 +0000
committerNadav Rotem <nadav.rotem@intel.com>2011-09-18 14:57:03 +0000
commit354efd88db96c9662d41c1e154fdee37324802db (patch)
treef6dc5fcb1ab033d09ece49995cd01b3da459b18f /test/CodeGen/X86/2011-09-18-sse2cmp.ll
parentbed95e01ffacb5ad9fc8169b98711b1a3e1af9da (diff)
downloadexternal_llvm-354efd88db96c9662d41c1e154fdee37324802db.zip
external_llvm-354efd88db96c9662d41c1e154fdee37324802db.tar.gz
external_llvm-354efd88db96c9662d41c1e154fdee37324802db.tar.bz2
setOperationAction should be done on the return value of the type, not the operands.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140001 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/2011-09-18-sse2cmp.ll')
-rw-r--r--test/CodeGen/X86/2011-09-18-sse2cmp.ll12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGen/X86/2011-09-18-sse2cmp.ll b/test/CodeGen/X86/2011-09-18-sse2cmp.ll
new file mode 100644
index 0000000..844d674
--- /dev/null
+++ b/test/CodeGen/X86/2011-09-18-sse2cmp.ll
@@ -0,0 +1,12 @@
+;RUN: llc < %s -march=x86 -mcpu=yonah -promote-elements -mattr=+sse2,-sse41 | FileCheck %s
+
+;CHECK: @max
+;CHECK: cmplepd
+;CHECK: ret
+
+define <2 x double> @max(<2 x double> %x, <2 x double> %y) {
+ %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
+ ret <2 x double> %max
+}
+