summaryrefslogtreecommitdiff
path: root/lib/libcompiler_rt/fixdfsi.c
diff options
context:
space:
mode:
authorPatrick Wildt <patrick@cvs.openbsd.org>2020-08-10 21:14:14 +0000
committerPatrick Wildt <patrick@cvs.openbsd.org>2020-08-10 21:14:14 +0000
commit37ec4290f2528b9dbe139c752a7d4d1ec0d36dd4 (patch)
treed344b5242a2e1e99a6e009a3fabf87c727b7fc4a /lib/libcompiler_rt/fixdfsi.c
parent2cd3fcb138133fcb38698ff64a3afb64b28ec073 (diff)
Tedu compiler-rt 8.0.1.
Diffstat (limited to 'lib/libcompiler_rt/fixdfsi.c')
-rw-r--r--lib/libcompiler_rt/fixdfsi.c30
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