aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/sse-align-2.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/sse-align-2.ll')
-rw-r--r--test/CodeGen/X86/sse-align-2.ll14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/CodeGen/X86/sse-align-2.ll b/test/CodeGen/X86/sse-align-2.ll
new file mode 100644
index 0000000..b5c0674
--- /dev/null
+++ b/test/CodeGen/X86/sse-align-2.ll
@@ -0,0 +1,14 @@
+; RUN: llvm-as < %s | llc -march=x86-64 | grep movup | wc -l | grep 2
+
+define <4 x float> @foo(<4 x float>* %p, <4 x float> %x)
+{
+ %t = load <4 x float>* %p, align 4
+ %z = mul <4 x float> %t, %x
+ ret <4 x float> %z
+}
+define <2 x double> @bar(<2 x double>* %p, <2 x double> %x)
+{
+ %t = load <2 x double>* %p, align 8
+ %z = mul <2 x double> %t, %x
+ ret <2 x double> %z
+}