Home | History | Annotate | Download | only in X86
      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: 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