blob: 218f0415fd7806eb4099ea28b49ab1525ae13374 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mattr=+sse2 -o %t -f
2; RUN: grep movlhps %t | wc -l | grep 2
3; RUN: grep unpcklps %t | wc -l | grep 1
4; RUN: grep punpckldq %t | wc -l | grep 1
5
6<4 x float> %test1(float %a, float %b) {
7 %tmp = insertelement <4 x float> zeroinitializer, float %a, uint 0
8 %tmp6 = insertelement <4 x float> %tmp, float 0.000000e+00, uint 1
9 %tmp8 = insertelement <4 x float> %tmp6, float %b, uint 2
10 %tmp9 = insertelement <4 x float> %tmp8, float 0.000000e+00, uint 3
11 ret <4 x float> %tmp9
12}
13
14<4 x float> %test2(float %a, float %b) {
15 %tmp = insertelement <4 x float> zeroinitializer, float %a, uint 0
16 %tmp7 = insertelement <4 x float> %tmp, float %b, uint 1
17 %tmp8 = insertelement <4 x float> %tmp7, float 0.000000e+00, uint 2
18 %tmp9 = insertelement <4 x float> %tmp8, float 0.000000e+00, uint 3
19 ret <4 x float> %tmp9
20}
21
22<2 x long> %test3(int %a, int %b) {
23 %tmp = insertelement <4 x int> zeroinitializer, int %a, uint 0
24 %tmp6 = insertelement <4 x int> %tmp, int %b, uint 1
25 %tmp8 = insertelement <4 x int> %tmp6, int 0, uint 2
26 %tmp10 = insertelement <4 x int> %tmp8, int 0, uint 3
27 %tmp11 = cast <4 x int> %tmp10 to <2 x long>
28 ret <2 x long> %tmp11
29}