mirror of
https://github.com/fluencelabs/musl
synced 2025-06-23 19:52:01 +00:00
math: fix __fpclassifyl(-0.0) for IEEE binary128
The sign bit was not cleared before checking for 0 so -0.0 was misclassified as FP_SUBNORMAL instead of FP_ZERO.
This commit is contained in:
@ -24,12 +24,11 @@ int __fpclassifyl(long double x)
|
|||||||
{
|
{
|
||||||
union ldshape u = {x};
|
union ldshape u = {x};
|
||||||
int e = u.i.se & 0x7fff;
|
int e = u.i.se & 0x7fff;
|
||||||
|
u.i.se = 0;
|
||||||
if (!e)
|
if (!e)
|
||||||
return u.i2.lo | u.i2.hi ? FP_SUBNORMAL : FP_ZERO;
|
return u.i2.lo | u.i2.hi ? FP_SUBNORMAL : FP_ZERO;
|
||||||
if (e == 0x7fff) {
|
if (e == 0x7fff)
|
||||||
u.i.se = 0;
|
|
||||||
return u.i2.lo | u.i2.hi ? FP_NAN : FP_INFINITE;
|
return u.i2.lo | u.i2.hi ? FP_NAN : FP_INFINITE;
|
||||||
}
|
|
||||||
return FP_NORMAL;
|
return FP_NORMAL;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user