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:
@ -40,9 +40,9 @@ invalid_fn (long double x, long double fn)
|
||||
long double
|
||||
__ieee754_scalbl (long double x, long double fn)
|
||||
{
|
||||
if (__builtin_expect (__isnanl (x), 0))
|
||||
if (__glibc_unlikely (__isnanl (x)))
|
||||
return x * fn;
|
||||
if (__builtin_expect (!__finitel (fn), 0))
|
||||
if (__glibc_unlikely (!__finitel (fn)))
|
||||
{
|
||||
if (__isnanl (fn) || fn > 0.0L)
|
||||
return x * fn;
|
||||
@ -50,7 +50,7 @@ __ieee754_scalbl (long double x, long double fn)
|
||||
return x;
|
||||
return x / -fn;
|
||||
}
|
||||
if (__builtin_expect ((long double) (int) fn != fn, 0))
|
||||
if (__glibc_unlikely ((long double) (int) fn != fn))
|
||||
return invalid_fn (x, fn);
|
||||
|
||||
return __scalbnl (x, (int) fn);
|
||||
|
Reference in New Issue
Block a user