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.
This commit is contained in:
Paul E. Murphy 2016-07-01 13:17:09 -05:00
parent b9e05ed07a
commit f2de695bf6
5 changed files with 15 additions and 10 deletions

View File

@ -1,3 +1,14 @@
2016-08-03 Paul E. Murphy <murphyp@linux.vnet.ibm.com>
* s_ccoshf.c (__ccoshf): Remove FE_INVALID
check, and remove __glibc_likely hint
from FP_INFINITE check.
* s_csinhf.c (__csinhf): Likewise.
* s_ccoshl.c (__ccoshl): Remove __glibc_likely
hint from FP_INFINITE check.
* s_csinhl.c (__csinhl): Likewise.
2016-08-03 Paul E. Murphy <murphyp@linux.vnet.ibm.com>
* math/Makefile (libm-calls): Insert F placeholder into

View File

@ -94,7 +94,7 @@ __ccoshf (__complex__ float x)
feraiseexcept (FE_INVALID);
}
}
else if (__glibc_likely (rcls == FP_INFINITE))
else if (rcls == FP_INFINITE)
{
/* Real part is infinite. */
if (__glibc_likely (icls > FP_ZERO))
@ -128,10 +128,8 @@ __ccoshf (__complex__ float x)
__real__ retval = HUGE_VALF;
__imag__ retval = __nanf ("") + __nanf ("");
#ifdef FE_INVALID
if (icls == FP_INFINITE)
feraiseexcept (FE_INVALID);
#endif
}
}
else

View File

@ -94,7 +94,7 @@ __ccoshl (__complex__ long double x)
feraiseexcept (FE_INVALID);
}
}
else if (__glibc_likely (rcls == FP_INFINITE))
else if (rcls == FP_INFINITE)
{
/* Real part is infinite. */
if (__glibc_likely (icls > FP_ZERO))

View File

@ -111,7 +111,7 @@ __csinhf (__complex__ float 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 @@ __csinhf (__complex__ float x)
__real__ retval = HUGE_VALF;
__imag__ retval = __nanf ("") + __nanf ("");
#ifdef FE_INVALID
if (icls == FP_INFINITE)
feraiseexcept (FE_INVALID);
#endif
}
}
else

View File

@ -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