summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/fildll.ll
blob: c5a3765c717b6ec452986953330d8e610d825b5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; 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
}