diff options
Diffstat (limited to 'math/s_csinhl.c')
-rw-r--r-- | math/s_csinhl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/math/s_csinhl.c b/math/s_csinhl.c index a437d16de2..eeb2212cd3 100644 --- a/math/s_csinhl.c +++ b/math/s_csinhl.c @@ -52,6 +52,9 @@ __csinhl (__complex__ long double x) cosix = 1.0; } + if (negate) + cosix = -cosix; + if (fabsl (__real__ x) > t) { long double exp_t = __ieee754_expl (t); @@ -86,9 +89,6 @@ __csinhl (__complex__ long double x) __imag__ retval = __ieee754_coshl (__real__ x) * sinix; } - if (negate) - __real__ retval = -__real__ retval; - if (fabsl (__real__ retval) < LDBL_MIN) { volatile long double force_underflow |