mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
df2896d609
llvm-svn: 81290
11 lines
291 B
LLVM
11 lines
291 B
LLVM
; RUN: llc < %s -march=x86-64 | not grep movsd
|
|
; RUN: llc < %s -march=x86-64 | grep {movd.*%rdi,.*%xmm0}
|
|
|
|
define <2 x i64> @test(i64 %i) nounwind {
|
|
entry:
|
|
%tmp10 = insertelement <2 x i64> undef, i64 %i, i32 0
|
|
%tmp11 = insertelement <2 x i64> %tmp10, i64 0, i32 1
|
|
ret <2 x i64> %tmp11
|
|
}
|
|
|