mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
- More timspec_*() and timeval_*() APIs have been introduced. - The copyfd() function is now simplified thanks to POSIX rules. - More Cosmo-specific APIs have been moved behind the COSMO define. - The setitimer() polyfill for Windows NT is now much higher quality. - Fixed build error for MODE=aarch64 due to -mstringop-strategy=loop. - This change introduces `make MODE=nox87 toolchain` which makes it possible to build programs using your cosmocc toolchain that don't have legacy fpu instructions. This is useful, for example, if you want to have a ~22kb tinier blink virtual machine.
32 lines
1 KiB
C
32 lines
1 KiB
C
/* clang-format off */
|
|
//===-- lib/addtf3.c - Quad-precision addition --------------------*- C -*-===//
|
|
//
|
|
// 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.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file implements quad-precision soft-float addition with the IEEE-754
|
|
// default rounding (to nearest, ties to even).
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#include "libc/math.h"
|
|
#if !(LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024)
|
|
|
|
STATIC_YOINK("huge_compiler_rt_license");
|
|
|
|
#define QUAD_PRECISION
|
|
#include "third_party/compiler_rt/fp_lib.inc"
|
|
|
|
#if defined(CRT_HAS_128BIT) && defined(CRT_LDBL_128BIT)
|
|
#include "third_party/compiler_rt/fp_add_impl.inc"
|
|
|
|
COMPILER_RT_ABI long double __addtf3(long double a, long double b){
|
|
return __addXf3__(a, b);
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* long double is long */
|