|
@@ -37,10 +37,8 @@ double modf(double x, double *iptr)
|
|
|
} else {
|
|
|
i = (0x000fffff)>>j0;
|
|
|
if(((i0&i)|i1)==0) {
|
|
|
- u_int32_t high;
|
|
|
*iptr = x;
|
|
|
- GET_HIGH_WORD(high,x);
|
|
|
- INSERT_WORDS(x,high&0x80000000,0);
|
|
|
+ INSERT_WORDS(x,i0&0x80000000,0);
|
|
|
return x;
|
|
|
} else {
|
|
|
INSERT_WORDS(*iptr,i0&(~i),0);
|
|
@@ -48,18 +46,17 @@ double modf(double x, double *iptr)
|
|
|
}
|
|
|
}
|
|
|
} else if (j0>51) {
|
|
|
- u_int32_t high;
|
|
|
*iptr = x*one;
|
|
|
- GET_HIGH_WORD(high,x);
|
|
|
- INSERT_WORDS(x,high&0x80000000,0);
|
|
|
+
|
|
|
+ if (j0 == 0x400 && ((i0 & 0xfffff) | i1))
|
|
|
+ return x*one;
|
|
|
+ INSERT_WORDS(x,i0&0x80000000,0);
|
|
|
return x;
|
|
|
} else {
|
|
|
i = ((u_int32_t)(0xffffffff))>>(j0-20);
|
|
|
if((i1&i)==0) {
|
|
|
- u_int32_t high;
|
|
|
*iptr = x;
|
|
|
- GET_HIGH_WORD(high,x);
|
|
|
- INSERT_WORDS(x,high&0x80000000,0);
|
|
|
+ INSERT_WORDS(x,i0&0x80000000,0);
|
|
|
return x;
|
|
|
} else {
|
|
|
INSERT_WORDS(*iptr,i0,i1&(~i));
|