From f2de695bf6ab3d346bf0ec4e436f124cff8edfd4 Mon Sep 17 00:00:00 2001 From: "Paul E. Murphy" Date: Fri, 1 Jul 2016 13:17:09 -0500 Subject: Unify drift between _Complex function type variants While trying to convert the _Complex function wrappers into a single generic implementation, a few minor variations between identical versions emerged. --- math/s_csinhl.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'math/s_csinhl.c') diff --git a/math/s_csinhl.c b/math/s_csinhl.c index d7f03fa..c231d7b 100644 --- a/math/s_csinhl.c +++ b/math/s_csinhl.c @@ -111,7 +111,7 @@ __csinhl (__complex__ long double x) } } } - else if (__glibc_likely (rcls == FP_INFINITE)) + else if (rcls == FP_INFINITE) { /* Real part is infinite. */ if (__glibc_likely (icls > FP_ZERO)) @@ -147,10 +147,8 @@ __csinhl (__complex__ long double x) __real__ retval = HUGE_VALL; __imag__ retval = __nanl ("") + __nanl (""); -#ifdef FE_INVALID if (icls == FP_INFINITE) feraiseexcept (FE_INVALID); -#endif } } else -- cgit v1.1