llvm-6502/test/CodeGen/X86/fildll.ll

13 lines
363 B
LLVM
Raw Normal View History

; RUN: llc < %s -march=x86 -x86-asm-syntax=att -mattr=-sse2 | grep fildll | count 2
define fastcc double @sint64_to_fp(i64 %X) {
%R = sitofp i64 %X to double ; <double> [#uses=1]
ret double %R
}
define fastcc double @uint64_to_fp(i64 %X) {
%R = uitofp i64 %X to double ; <double> [#uses=1]
ret double %R
}