musl/src/math/modf.c
Szabolcs Nagy c4359e0130 math: excess precision fix modf, modff, scalbn, scalbnf
old code was correct only if the result was stored (without the
excess precision) or musl was compiled with -ffloat-store.
now we use STRICT_ASSIGN to work around the issue.
(see note 160 in c11 section 6.8.6.4)
2012-11-13 10:55:35 +01:00

37 lines
603 B
C

#include "libm.h"
double modf(double x, double *iptr)
{
union {double x; uint64_t n;} u = {x};
uint64_t mask;
int e;
e = (int)(u.n>>52 & 0x7ff) - 0x3ff;
/* no fractional part */
if (e >= 52) {
*iptr = x;
if (e == 0x400 && u.n<<12 != 0) /* nan */
return x;
u.n &= (uint64_t)1<<63;
return u.x;
}
/* no integral part*/
if (e < 0) {
u.n &= (uint64_t)1<<63;
*iptr = u.x;
return x;
}
mask = (uint64_t)-1>>12 >> e;
if ((u.n & mask) == 0) {
*iptr = x;
u.n &= (uint64_t)1<<63;
return u.x;
}
u.n &= ~mask;
*iptr = u.x;
STRICT_ASSIGN(double, x, x - *iptr);
return x;
}