blob: 34d84ef15f9cb39ce72a1b3551af02b778e680f0 [file] [log] [blame]
Evan Cheng13559d62008-09-26 23:41:32 +00001; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | not grep punpck
2; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep pshufd
3; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 -optimize-size | grep punpck
4
5define i32 @t() nounwind {
6entry:
7 %a = alloca <4 x i32> ; <<4 x i32>*> [#uses=2]
8 %b = alloca <4 x i32> ; <<4 x i32>*> [#uses=5]
9 volatile store <4 x i32> < i32 0, i32 1, i32 2, i32 3 >, <4 x i32>* %a
10 %tmp = load <4 x i32>* %a ; <<4 x i32>> [#uses=1]
11 store <4 x i32> %tmp, <4 x i32>* %b
12 %tmp1 = load <4 x i32>* %b ; <<4 x i32>> [#uses=1]
13 %tmp2 = load <4 x i32>* %b ; <<4 x i32>> [#uses=1]
14 %punpckldq = shufflevector <4 x i32> %tmp1, <4 x i32> %tmp2, <4 x i32> < i32 0, i32 4, i32 1, i32 5 > ; <<4 x i32>> [#uses=1]
15 store <4 x i32> %punpckldq, <4 x i32>* %b
16 %tmp3 = load <4 x i32>* %b ; <<4 x i32>> [#uses=1]
17 %result = extractelement <4 x i32> %tmp3, i32 0 ; <i32> [#uses=1]
18 ret i32 %result
19}