mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Use glibc_likely instead __builtin_expect.
This commit is contained in:
@ -30,16 +30,16 @@ __ccosh (__complex__ double x)
|
||||
int rcls = fpclassify (__real__ x);
|
||||
int icls = fpclassify (__imag__ x);
|
||||
|
||||
if (__builtin_expect (rcls >= FP_ZERO, 1))
|
||||
if (__glibc_likely (rcls >= FP_ZERO))
|
||||
{
|
||||
/* Real part is finite. */
|
||||
if (__builtin_expect (icls >= FP_ZERO, 1))
|
||||
if (__glibc_likely (icls >= FP_ZERO))
|
||||
{
|
||||
/* Imaginary part is finite. */
|
||||
const int t = (int) ((DBL_MAX_EXP - 1) * M_LN2);
|
||||
double sinix, cosix;
|
||||
|
||||
if (__builtin_expect (icls != FP_SUBNORMAL, 1))
|
||||
if (__glibc_likely (icls != FP_SUBNORMAL))
|
||||
{
|
||||
__sincos (__imag__ x, &sinix, &cosix);
|
||||
}
|
||||
@ -108,12 +108,12 @@ __ccosh (__complex__ double x)
|
||||
else if (rcls == FP_INFINITE)
|
||||
{
|
||||
/* Real part is infinite. */
|
||||
if (__builtin_expect (icls > FP_ZERO, 1))
|
||||
if (__glibc_likely (icls > FP_ZERO))
|
||||
{
|
||||
/* Imaginary part is finite. */
|
||||
double sinix, cosix;
|
||||
|
||||
if (__builtin_expect (icls != FP_SUBNORMAL, 1))
|
||||
if (__glibc_likely (icls != FP_SUBNORMAL))
|
||||
{
|
||||
__sincos (__imag__ x, &sinix, &cosix);
|
||||
}
|
||||
|
Reference in New Issue
Block a user