Replace -use-init-array with -use-ctors.
[oota-llvm.git] / test / CodeGen / X86 / vec_set-5.ll
1 ; RUN: llc < %s -march=x86 -mattr=+sse2 -o %t
2 ; RUN: grep movlhps   %t | count 1
3 ; RUN: grep movq      %t | count 2
4
5 define <4 x float> @test1(float %a, float %b) nounwind {
6         %tmp = insertelement <4 x float> zeroinitializer, float %a, i32 0               ; <<4 x float>> [#uses=1]
7         %tmp6 = insertelement <4 x float> %tmp, float 0.000000e+00, i32 1               ; <<4 x float>> [#uses=1]
8         %tmp8 = insertelement <4 x float> %tmp6, float %b, i32 2                ; <<4 x float>> [#uses=1]
9         %tmp9 = insertelement <4 x float> %tmp8, float 0.000000e+00, i32 3              ; <<4 x float>> [#uses=1]
10         ret <4 x float> %tmp9
11 }
12
13 define <4 x float> @test2(float %a, float %b) nounwind {
14         %tmp = insertelement <4 x float> zeroinitializer, float %a, i32 0               ; <<4 x float>> [#uses=1]
15         %tmp7 = insertelement <4 x float> %tmp, float %b, i32 1         ; <<4 x float>> [#uses=1]
16         %tmp8 = insertelement <4 x float> %tmp7, float 0.000000e+00, i32 2              ; <<4 x float>> [#uses=1]
17         %tmp9 = insertelement <4 x float> %tmp8, float 0.000000e+00, i32 3              ; <<4 x float>> [#uses=1]
18         ret <4 x float> %tmp9
19 }
20
21 define <2 x i64> @test3(i32 %a, i32 %b) nounwind {
22         %tmp = insertelement <4 x i32> zeroinitializer, i32 %a, i32 0           ; <<4 x i32>> [#uses=1]
23         %tmp6 = insertelement <4 x i32> %tmp, i32 %b, i32 1             ; <<4 x i32>> [#uses=1]
24         %tmp8 = insertelement <4 x i32> %tmp6, i32 0, i32 2             ; <<4 x i32>> [#uses=1]
25         %tmp10 = insertelement <4 x i32> %tmp8, i32 0, i32 3            ; <<4 x i32>> [#uses=1]
26         %tmp11 = bitcast <4 x i32> %tmp10 to <2 x i64>          ; <<2 x i64>> [#uses=1]
27         ret <2 x i64> %tmp11
28 }