diff options
author | Dan Gohman <djg@cray.com> | 2007-07-26 00:31:09 +0000 |
---|---|---|
committer | Dan Gohman <djg@cray.com> | 2007-07-26 00:31:09 +0000 |
commit | b7d91493b0e3cf1c33dfc484263285e00856d100 (patch) | |
tree | 37ee1a9b4b41b583a432215d61185169a4c398fd /test/CodeGen/X86 | |
parent | 3a9c0ccd2d92f8acd4f78c281de1dd61f4f89782 (diff) | |
download | external_llvm-b7d91493b0e3cf1c33dfc484263285e00856d100.zip external_llvm-b7d91493b0e3cf1c33dfc484263285e00856d100.tar.gz external_llvm-b7d91493b0e3cf1c33dfc484263285e00856d100.tar.bz2 |
Remove X86ISD::LOAD_PACK and X86ISD::LOAD_UA and associated code from the
x86 target, replacing them with the new alignment attributes on memory
references.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40504 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86')
-rw-r--r-- | test/CodeGen/X86/vec_shuffle.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/vec_shuffle.ll b/test/CodeGen/X86/vec_shuffle.ll index d06efa5..16ce3da 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) { |