]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/compiler-rt/lib/builtins/fixunsdfsi.c
Merge compiler-rt trunk r321017 to contrib/compiler-rt.
[FreeBSD/FreeBSD.git] / contrib / compiler-rt / lib / builtins / fixunsdfsi.c
1 /* ===-- fixunsdfsi.c - Implement __fixunsdfsi -----------------------------===
2  *
3  *                     The LLVM Compiler Infrastructure
4  *
5  * This file is dual licensed under the MIT and the University of Illinois Open
6  * Source Licenses. See LICENSE.TXT for details.
7  *
8  * ===----------------------------------------------------------------------===
9  */
10
11 #define DOUBLE_PRECISION
12 #include "fp_lib.h"
13 typedef su_int fixuint_t;
14 #include "fp_fixuint_impl.inc"
15
16 COMPILER_RT_ABI su_int
17 __fixunsdfsi(fp_t a) {
18     return __fixuint(a);
19 }
20
21 #if defined(__ARM_EABI__)
22 #if defined(COMPILER_RT_ARMHF_TARGET)
23 AEABI_RTABI su_int __aeabi_d2uiz(fp_t a) {
24   return __fixunsdfsi(a);
25 }
26 #else
27 AEABI_RTABI su_int __aeabi_d2uiz(fp_t a) COMPILER_RT_ALIAS(__fixunsdfsi);
28 #endif
29 #endif