[AVX512] Bring back vector-shuffle lowering support through broadcasts
[oota-llvm.git] / test / CodeGen / X86 / fildll.ll
1 ; RUN: llc < %s -march=x86 -x86-asm-syntax=att -mattr=-sse2 | grep fildll | count 2
2
3 define fastcc double @sint64_to_fp(i64 %X) {
4         %R = sitofp i64 %X to double            ; <double> [#uses=1]
5         ret double %R
6 }
7
8 define fastcc double @uint64_to_fp(i64 %X) {
9         %R = uitofp i64 %X to double            ; <double> [#uses=1]
10         ret double %R
11 }
12