aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/vec_set-9.ll
blob: b73187c055d2efa5190bb0b0f61713131bb29bea (plain)
1
2
3
4
5
6
7
8
9
; RUN: llvm-as < %s | llc -march=x86-64 | grep movd | count 1
; RUN: llvm-as < %s | llc -march=x86-64 | grep {punpcklqdq.*%xmm0, %xmm0}

define <2 x i64> @test3(i64 %A) {
entry:
	%B = insertelement <2 x i64> undef, i64 %A, i32 1
	ret <2 x i64> %B
}