summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/vec_set-D.ll
blob: 9c1e1acf0bab60a75eeb16ecb634f83fa1383141 (plain)
1
2
3
4
5
6
7
8
9
; RUN: llc < %s -march=x86 -mattr=+sse2 | FileCheck %s

; CHECK: movq

define <4 x i32> @t(i32 %x, i32 %y) nounwind  {
	%tmp1 = insertelement <4 x i32> zeroinitializer, i32 %x, i32 0
	%tmp2 = insertelement <4 x i32> %tmp1, i32 %y, i32 1
	ret <4 x i32> %tmp2
}