diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-09-25 23:35:16 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-09-25 23:35:16 +0000 |
commit | 4dcc8a373d23cb5e9aa83c27f2c7ada95ed10708 (patch) | |
tree | 71bca397d7de3bf0b390f9e85b166c280febd86d /test/CodeGen/X86/vec_set-9.ll | |
parent | 789ce77c6a90747aab392e01f30601d55a95fe3a (diff) |
Prefer movlhps over punpcklqdq, etc. in more cases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56627 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/vec_set-9.ll')
-rw-r--r-- | test/CodeGen/X86/vec_set-9.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/vec_set-9.ll b/test/CodeGen/X86/vec_set-9.ll index 38f729fbc8..5c1b8f5dac 100644 --- a/test/CodeGen/X86/vec_set-9.ll +++ b/test/CodeGen/X86/vec_set-9.ll @@ -1,5 +1,5 @@ ; RUN: llvm-as < %s | llc -march=x86-64 | grep movd | count 1 -; RUN: llvm-as < %s | llc -march=x86-64 | grep {punpcklqdq.*%xmm0, %xmm0} +; RUN: llvm-as < %s | llc -march=x86-64 | grep {movlhps.*%xmm0, %xmm0} define <2 x i64> @test3(i64 %A) nounwind { entry: |