diff options
author | 2020-08-10 21:14:10 +0000 | |
---|---|---|
committer | 2020-08-10 21:14:10 +0000 | |
commit | f2119caf99b8ed409235597050ceebdc9102f562 (patch) | |
tree | cfb90cfe994f47cfaf95506823ca0dac2d08b04d /lib/libcompiler_rt/fixdfsi.c | |
parent | Un-hook and re-hook libcompiler_rt. (diff) | |
download | wireguard-openbsd-f2119caf99b8ed409235597050ceebdc9102f562.tar.xz wireguard-openbsd-f2119caf99b8ed409235597050ceebdc9102f562.zip |
Tedu compiler-rt 8.0.1.
Diffstat (limited to 'lib/libcompiler_rt/fixdfsi.c')
-rw-r--r-- | lib/libcompiler_rt/fixdfsi.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/lib/libcompiler_rt/fixdfsi.c b/lib/libcompiler_rt/fixdfsi.c deleted file mode 100644 index 5b958817571..00000000000 --- a/lib/libcompiler_rt/fixdfsi.c +++ /dev/null @@ -1,30 +0,0 @@ -/* ===-- fixdfsi.c - Implement __fixdfsi -----------------------------------=== - * - * The LLVM Compiler Infrastructure - * - * This file is dual licensed under the MIT and the University of Illinois Open - * Source Licenses. See LICENSE.TXT for details. - * - * ===----------------------------------------------------------------------=== - */ - -#define DOUBLE_PRECISION -#include "fp_lib.h" -typedef si_int fixint_t; -typedef su_int fixuint_t; -#include "fp_fixint_impl.inc" - -COMPILER_RT_ABI si_int -__fixdfsi(fp_t a) { - return __fixint(a); -} - -#if defined(__ARM_EABI__) -#if defined(COMPILER_RT_ARMHF_TARGET) -AEABI_RTABI si_int __aeabi_d2iz(fp_t a) { - return __fixdfsi(a); -} -#else -AEABI_RTABI si_int __aeabi_d2iz(fp_t a) COMPILER_RT_ALIAS(__fixdfsi); -#endif -#endif |