diff options
Diffstat (limited to 'src/math/tanhl.c')
-rw-r--r-- | src/math/tanhl.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/math/tanhl.c b/src/math/tanhl.c index 66559e9f..f594b85f 100644 --- a/src/math/tanhl.c +++ b/src/math/tanhl.c @@ -8,10 +8,7 @@ long double tanhl(long double x) #elif LDBL_MANT_DIG == 64 && LDBL_MAX_EXP == 16384 long double tanhl(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; unsigned sign = u.i.se & 0x8000; uint32_t w; |