]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - contrib/compiler-rt/lib/x86_64/floatdidf.c
Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
[FreeBSD/releng/9.0.git] / contrib / compiler-rt / lib / x86_64 / floatdidf.c
1 /* This file is distributed under the University of Illinois Open Source
2  * License. See LICENSE.TXT for details.
3  */
4
5 /* double __floatdidf(di_int a); */
6
7 #ifdef __x86_64__
8
9 #include <stdint.h>
10
11 double __floatdidf(int64_t a)
12 {
13         return (double)a;
14 }
15
16 #endif /* __x86_64__ */