From f4e4632abfa8297db1485e132bb15b9ef6c32a1b Mon Sep 17 00:00:00 2001 From: Szabolcs Nagy Date: Tue, 10 Mar 2015 20:01:20 +0000 Subject: math: add dummy implementations of 128 bit long double functions This is in preparation for the aarch64 port only to have the long double math symbols available on ld128 platforms. The implementations should be fixed up later once we have proper tests for these functions. Added bigendian handling for ld128 bit manipulations too. --- src/math/acoshl.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/math/acoshl.c') diff --git a/src/math/acoshl.c b/src/math/acoshl.c index 4aa84acb..8d4b43f6 100644 --- a/src/math/acoshl.c +++ b/src/math/acoshl.c @@ -20,4 +20,10 @@ long double acoshl(long double x) return logl(2*x - 1/(x+sqrtl(x*x-1))); return logl(x) + 0.693147180559945309417232121458176568L; } +#elif LDBL_MANT_DIG == 113 && LDBL_MAX_EXP == 16384 +// TODO: broken implementation to make things compile +long double acoshl(long double x) +{ + return acosh(x); +} #endif -- cgit v1.2.1