From aa0c4a204e28cfc90a9ee955691a6cbe014c9fde Mon Sep 17 00:00:00 2001 From: Szabolcs Nagy Date: Wed, 4 Sep 2013 15:54:02 +0000 Subject: math: long double fix (use ldshape union) * use new ldshape union consistently * add ld128 support to frexpl * simplify sqrtl comment (ld64 is not just arm) --- src/math/sinhl.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/math/sinhl.c') diff --git a/src/math/sinhl.c b/src/math/sinhl.c index 14e3371b..4864ddfa 100644 --- a/src/math/sinhl.c +++ b/src/math/sinhl.c @@ -8,10 +8,7 @@ long double sinhl(long double x) #elif LDBL_MANT_DIG == 64 && LDBL_MAX_EXP == 16384 long double sinhl(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; long double h, t, absx; -- cgit v1.2.1