diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-03-28 06:40:57 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-03-28 06:40:57 +0000 |
commit | ec1ab444a1abd1712d18329a754c3f1773b23ed5 (patch) | |
tree | b7aa7fd442c4fc3d3879da53a7ca2d75cc008cf7 /test/CodeGen/X86 | |
parent | 816cee2216a7b77eec6395500123d49c2fbf22e5 (diff) | |
download | external_llvm-ec1ab444a1abd1712d18329a754c3f1773b23ed5.zip external_llvm-ec1ab444a1abd1712d18329a754c3f1773b23ed5.tar.gz external_llvm-ec1ab444a1abd1712d18329a754c3f1773b23ed5.tar.bz2 |
Use movhpd is even better than movlhps.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27217 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 ab50053..1fadb48 100644 --- a/test/CodeGen/X86/vec_shuffle.ll +++ b/test/CodeGen/X86/vec_shuffle.ll @@ -1,5 +1,5 @@ ; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep shufp | wc -l | grep 1 -; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep movlhps +; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep movhpd void %test_v4sf(<4 x float>* %P, float %X, float %Y) { %tmp = insertelement <4 x float> zeroinitializer, float %X, uint 0 |