mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01:00
math: Fix branch hint for 68d7128942
This commit is contained in:
parent
2062e02772
commit
6976cd3124
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ __ieee754_lgammaf_r (float x, int *signgamp)
|
||||||
Note that for a binary32 |x| >= 2^23, x is necessarily an integer,
|
Note that for a binary32 |x| >= 2^23, x is necessarily an integer,
|
||||||
and we already dealed with negative integers, thus now:
|
and we already dealed with negative integers, thus now:
|
||||||
-2^23 < x < +Inf and x is not a negative integer nor 0, 1, 2. */
|
-2^23 < x < +Inf and x is not a negative integer nor 0, 1, 2. */
|
||||||
if (__glibc_unlikely (fx >= 0))
|
if (__glibc_likely (fx >= 0))
|
||||||
*signgamp = 1;
|
*signgamp = 1;
|
||||||
else
|
else
|
||||||
/* gamma(x) is negative in (-2n-1,-2n), thus when fx is odd. */
|
/* gamma(x) is negative in (-2n-1,-2n), thus when fx is odd. */
|
||||||
|
|
Loading…
Add table
Reference in a new issue