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