summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/vec_set-C.ll
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2011-06-20 18:33:26 +0000
committerNick Lewycky <nicholas@mxc.ca>2011-06-20 18:33:26 +0000
commit1bd15700a0eb3057d3e2d65070c3fc6b99e0d8a2 (patch)
treeeae295cc95f47a32efa843a1c80c92c14e22ffcf /test/CodeGen/X86/vec_set-C.ll
parent332d7e871cbff385e6bf7d42565eb7d92cde0ed6 (diff)
downloadllvm-1bd15700a0eb3057d3e2d65070c3fc6b99e0d8a2.tar.gz
llvm-1bd15700a0eb3057d3e2d65070c3fc6b99e0d8a2.tar.bz2
llvm-1bd15700a0eb3057d3e2d65070c3fc6b99e0d8a2.tar.xz
Emit movq for 64-bit register to XMM register moves, but continue to accept
movd when assembling. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133452 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/vec_set-C.ll')
-rw-r--r--test/CodeGen/X86/vec_set-C.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/vec_set-C.ll b/test/CodeGen/X86/vec_set-C.ll
index 7636ac3b37..0cf308c235 100644
--- a/test/CodeGen/X86/vec_set-C.ll
+++ b/test/CodeGen/X86/vec_set-C.ll
@@ -1,6 +1,6 @@
; RUN: llc < %s -march=x86 -mattr=+sse2 | grep movq
; RUN: llc < %s -march=x86 -mattr=+sse2 | grep mov | count 1
-; RUN: llc < %s -march=x86-64 -mattr=+sse2 | grep movd
+; RUN: llc < %s -march=x86-64 -mattr=+sse2 | grep movq
define <2 x i64> @t1(i64 %x) nounwind {
%tmp8 = insertelement <2 x i64> zeroinitializer, i64 %x, i32 0