summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/sse2.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-15 17:28:09 +0000
committerChris Lattner <sabre@nondot.org>2009-08-15 17:28:09 +0000
commitd8d7335f79199a7b36f08f15331e5a24b0301d74 (patch)
treeaa37e14cde1133420c6c8d0a53f0b4b8705009db /test/CodeGen/X86/sse2.ll
parent11ade72cdaaa49a7bc91a3b69f38cd843b456c1b (diff)
downloadllvm-d8d7335f79199a7b36f08f15331e5a24b0301d74.tar.gz
llvm-d8d7335f79199a7b36f08f15331e5a24b0301d74.tar.bz2
llvm-d8d7335f79199a7b36f08f15331e5a24b0301d74.tar.xz
convert to filecheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79117 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/sse2.ll')
-rw-r--r--test/CodeGen/X86/sse2.ll21
1 files changed, 18 insertions, 3 deletions
diff --git a/test/CodeGen/X86/sse2.ll b/test/CodeGen/X86/sse2.ll
index 88e303d4a0..463df30a6f 100644
--- a/test/CodeGen/X86/sse2.ll
+++ b/test/CodeGen/X86/sse2.ll
@@ -1,6 +1,5 @@
-; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep movlpd
-; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep movhpd
-; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | not grep movsd
+; Tests for SSE2 and below, without SSE3+.
+; RUN: llvm-as < %s | llc -march=x86 -mcpu=pentium4 | FileCheck %s
define void @t1(<2 x double>* %r, <2 x double>* %A, double %B) nounwind {
%tmp3 = load <2 x double>* %A, align 16
@@ -8,6 +7,14 @@ define void @t1(<2 x double>* %r, <2 x double>* %A, double %B) nounwind {
%tmp9 = shufflevector <2 x double> %tmp3, <2 x double> %tmp7, <2 x i32> < i32 2, i32 1 >
store <2 x double> %tmp9, <2 x double>* %r, align 16
ret void
+
+; CHECK: t1:
+; CHECK: movl 8(%esp), %eax
+; CHECK: movapd (%eax), %xmm0
+; CHECK: movlpd 12(%esp), %xmm0
+; CHECK: movl 4(%esp), %eax
+; CHECK: movapd %xmm0, (%eax)
+; CHECK: ret
}
define void @t2(<2 x double>* %r, <2 x double>* %A, double %B) nounwind {
@@ -16,4 +23,12 @@ define void @t2(<2 x double>* %r, <2 x double>* %A, double %B) nounwind {
%tmp9 = shufflevector <2 x double> %tmp3, <2 x double> %tmp7, <2 x i32> < i32 0, i32 2 >
store <2 x double> %tmp9, <2 x double>* %r, align 16
ret void
+
+; CHECK: t2:
+; CHECK: movl 8(%esp), %eax
+; CHECK: movapd (%eax), %xmm0
+; CHECK: movhpd 12(%esp), %xmm0
+; CHECK: movl 4(%esp), %eax
+; CHECK: movapd %xmm0, (%eax)
+; CHECK: ret
}