]> git.proxmox.com Git - rustc.git/blame - src/libcompiler_builtins/compiler-rt/lib/builtins/fixdfsi.c
New upstream version 1.25.0+dfsg1
[rustc.git] / src / libcompiler_builtins / compiler-rt / lib / builtins / fixdfsi.c
CommitLineData
92a42be0
SL
1/* ===-- fixdfsi.c - Implement __fixdfsi -----------------------------------===
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 */
1a4d82fc
JJ
10
11#define DOUBLE_PRECISION
12#include "fp_lib.h"
92a42be0
SL
13typedef si_int fixint_t;
14typedef su_int fixuint_t;
15#include "fp_fixint_impl.inc"
1a4d82fc 16
92a42be0 17COMPILER_RT_ABI si_int
1a4d82fc 18__fixdfsi(fp_t a) {
92a42be0 19 return __fixint(a);
1a4d82fc 20}
2c00a5a8
XL
21
22#if defined(__ARM_EABI__)
23#if defined(COMPILER_RT_ARMHF_TARGET)
24AEABI_RTABI si_int __aeabi_d2iz(fp_t a) {
25 return __fixdfsi(a);
26}
27#else
28AEABI_RTABI si_int __aeabi_d2iz(fp_t a) COMPILER_RT_ALIAS(__fixdfsi);
29#endif
30#endif