1; RUN: llc < %s -march=x86 -mattr=+sse,-sse2 | FileCheck %s
2; PR2484
3
4define <4 x float> @f4523(<4 x float> %a,<4 x float> %b) nounwind {
5entry:
6; CHECK: shufps $-28, %xmm
7%shuffle = shufflevector <4 x float> %a, <4 x float> %b, <4 x i32> <i32 4,i32
85,i32 2,i32 3>
9ret <4 x float> %shuffle
10}
11