diff options
author | Szabolcs Nagy <nsz@port70.net> | 2015-03-10 20:01:20 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2015-03-11 18:54:53 -0400 |
commit | f4e4632abfa8297db1485e132bb15b9ef6c32a1b (patch) | |
tree | 5e7f8685339372ad2eefa685cfa8e9c967300562 /src/math/sinhl.c | |
parent | 53cfe0c61a136c12376a8f32d616de1d68227181 (diff) | |
download | musl-f4e4632abfa8297db1485e132bb15b9ef6c32a1b.tar.gz musl-f4e4632abfa8297db1485e132bb15b9ef6c32a1b.tar.bz2 musl-f4e4632abfa8297db1485e132bb15b9ef6c32a1b.tar.xz musl-f4e4632abfa8297db1485e132bb15b9ef6c32a1b.zip |
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.
Diffstat (limited to 'src/math/sinhl.c')
-rw-r--r-- | src/math/sinhl.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/math/sinhl.c b/src/math/sinhl.c index 4864ddfa..b305d4d2 100644 --- a/src/math/sinhl.c +++ b/src/math/sinhl.c @@ -34,4 +34,10 @@ long double sinhl(long double x) t = expl(0.5*absx); return h*t*t; } +#elif LDBL_MANT_DIG == 113 && LDBL_MAX_EXP == 16384 +// TODO: broken implementation to make things compile +long double sinhl(long double x) +{ + return sinh(x); +} #endif |