[x86] Rename avx-{s,z}ext.ll to vector-{s,z}ext.ll.
[oota-llvm.git] / test / CodeGen / X86 / vec_uint_to_fp.ll
1 ; RUN: llc < %s -march=x86 -mcpu=corei7-avx | FileCheck %s
2
3 ; Test that we are not lowering uinttofp to scalars
4 define <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