X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fcoshl.c;h=06a56fe3be85d346cd98de913c091e900046a938;hb=85050ac5a2677a8ebf2722e93b5c037ec675c036;hp=d09070bbf7a4962d7f1f66826ef58cbaafce6158;hpb=5d5ab51862cbd010bdf52dc3b04b0967450bcd1a;p=musl diff --git a/src/math/coshl.c b/src/math/coshl.c index d09070bb..06a56fe3 100644 --- a/src/math/coshl.c +++ b/src/math/coshl.c @@ -8,10 +8,7 @@ long double coshl(long double x) #elif LDBL_MANT_DIG == 64 && LDBL_MAX_EXP == 16384 long double coshl(long double x) { - union { - long double f; - struct{uint64_t m; uint16_t se; uint16_t pad;} i; - } u = {.f = x}; + union ldshape u = {x}; unsigned ex = u.i.se & 0x7fff; uint32_t w; long double t; @@ -41,4 +38,10 @@ long double coshl(long double x) t = expl(0.5*x); return 0.5*t*t; } +#elif LDBL_MANT_DIG == 113 && LDBL_MAX_EXP == 16384 +// TODO: broken implementation to make things compile +long double coshl(long double x) +{ + return cosh(x); +} #endif