blob: 38f02fe238c4f23e6e76e2e83c308fa0c3256346 [file] [log] [blame]
Mon P Wang56d91642009-02-04 01:16:59 +00001; 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,
9define void @test(<8 x i16>* %dest, <8 x i16> %in) {
10entry:
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
18define void @test2(<4 x i32>* %dest, <4 x i32> %in) {
19entry:
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}