Revert 69952. Causes testsuite failures on linux x86-64.
[oota-llvm.git] / test / CodeGen / X86 / vec_shuffle-30.ll
1 ; RUN: llvm-as < %s | llc -march=x86 -mattr=sse41 -disable-mmx -o %t -f
2 ; RUN: grep pshufhw %t | grep 161 | count 1
3 ; RUN: grep pslldq %t | count 1
4
5
6
7 ; Test case when creating pshufhw, we incorrectly set the higher order bit
8 ; for an undef,
9 define void @test(<8 x i16>* %dest, <8 x i16> %in) {
10 entry:
11   %0 = load <8 x i16>* %dest
12   %1 = shufflevector <8 x i16> %0, <8 x i16> %in, <8 x i32> < i32 0, i32 1, i32 2, i32 3, i32 13, i32 undef, i32 14, i32 14>
13   store <8 x i16> %1, <8 x i16>* %dest
14   ret void
15 }                              
16
17 ; A test case where we shouldn't generate a punpckldq but a pshufd and a pslldq
18 define void @test2(<4 x i32>* %dest, <4 x i32> %in) {
19 entry:
20   %0 = shufflevector <4 x i32> %in, <4 x i32> <i32 0, i32 0, i32 0, i32 0>, <4 x i32> < i32 undef, i32 5, i32 undef, i32 2>
21   store <4 x i32> %0, <4 x i32>* %dest
22   ret void
23 }