summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/compiler-rt/lib/builtins/fixtfdi.c
diff options
context:
space:
mode:
authorpatrick <patrick@openbsd.org>2020-08-10 21:03:40 +0000
committerpatrick <patrick@openbsd.org>2020-08-10 21:03:40 +0000
commit3cab2bb3f667058bece8e38b12449a63a9d73c4b (patch)
tree732ebd68e507f798225d97f4f2dd7ff8468d3e17 /gnu/llvm/compiler-rt/lib/builtins/fixtfdi.c
parentReduce log spam. (diff)
downloadwireguard-openbsd-3cab2bb3f667058bece8e38b12449a63a9d73c4b.tar.xz
wireguard-openbsd-3cab2bb3f667058bece8e38b12449a63a9d73c4b.zip
Import compiler-rt 10.0.1 release.
ok kettenis@
Diffstat (limited to 'gnu/llvm/compiler-rt/lib/builtins/fixtfdi.c')
-rw-r--r--gnu/llvm/compiler-rt/lib/builtins/fixtfdi.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/llvm/compiler-rt/lib/builtins/fixtfdi.c b/gnu/llvm/compiler-rt/lib/builtins/fixtfdi.c
new file mode 100644
index 00000000000..fe570e6b375
--- /dev/null
+++ b/gnu/llvm/compiler-rt/lib/builtins/fixtfdi.c
@@ -0,0 +1,18 @@
+//===-- fixtfdi.c - Implement __fixtfdi -----------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#define QUAD_PRECISION
+#include "fp_lib.h"
+
+#if defined(CRT_HAS_128BIT) && defined(CRT_LDBL_128BIT)
+typedef di_int fixint_t;
+typedef du_int fixuint_t;
+#include "fp_fixint_impl.inc"
+
+COMPILER_RT_ABI di_int __fixtfdi(fp_t a) { return __fixint(a); }
+#endif