Convert more tests to avoid llvm-as.
[oota-llvm.git] / test / CodeGen / X86 / widen_conv-4.ll
1 ; RUN: llc < %s -march=x86 -mattr=+sse42 -disable-mmx -o %t
2
3 ; unsigned to float v7i16 to v7f32
4
5 define void @convert(<7 x float>* %dst.addr, <7 x i16> %src) nounwind {
6 entry:
7         %val = sitofp <7 x i16> %src to <7 x float>
8         store <7 x float> %val, <7 x float>* %dst.addr
9         ret void
10 }