1; RUN: llc < %s -march=x86 -mcpu=corei7-avx | FileCheck %s
2
3; Test that we are not lowering uinttofp to scalars
4define <4 x float> @test1(<4 x i32> %A) nounwind {
5; CHECK-LABEL: test1:
6; CHECK-NOT: cvtsd2ss
7; CHECK: ret
8  %C = uitofp <4 x i32> %A to <4 x float>
9  ret <4 x float> %C
10}
11
12