summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/vec_shuffle.ll
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-07-27 17:16:43 +0000
committerDan Gohman <gohman@apple.com>2007-07-27 17:16:43 +0000
commitd300622ebacde5bffb5b5e58142323e505df9dbe (patch)
treeeaaadf961ade373f2c208baa68d8bf6607eb42c0 /test/CodeGen/X86/vec_shuffle.ll
parent9d3e79107d4ea26fe64a30e9981897735df10952 (diff)
downloadllvm-d300622ebacde5bffb5b5e58142323e505df9dbe.tar.gz
llvm-d300622ebacde5bffb5b5e58142323e505df9dbe.tar.bz2
llvm-d300622ebacde5bffb5b5e58142323e505df9dbe.tar.xz
Re-apply 40504, but with a fix for the segfault it caused in oggenc:
Make the alignedload and alignedstore patterns always require 16-byte alignment. This way when they are used in the "Fs" instructions, in which a vector instruction is used for a scalar purpose, they can still require the full vector alignment. And add a regression test for this. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40555 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/vec_shuffle.ll')
-rw-r--r--test/CodeGen/X86/vec_shuffle.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/vec_shuffle.ll b/test/CodeGen/X86/vec_shuffle.ll
index d06efa5ff2..16ce3dac54 100644
--- a/test/CodeGen/X86/vec_shuffle.ll
+++ b/test/CodeGen/X86/vec_shuffle.ll
@@ -1,6 +1,6 @@
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mattr=+sse2 -o %t -f
; RUN: grep shufp %t | wc -l | grep 1
-; RUN: grep movups %t | wc -l | grep 1
+; RUN: grep movupd %t | wc -l | grep 1
; RUN: grep pshufhw %t | wc -l | grep 1
void %test_v4sf(<4 x float>* %P, float %X, float %Y) {