summaryrefslogtreecommitdiffstats
path: root/newlib/libm/math/sf_ceil.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libm/math/sf_ceil.c')
-rw-r--r--newlib/libm/math/sf_ceil.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/newlib/libm/math/sf_ceil.c b/newlib/libm/math/sf_ceil.c
index 85f0e9714..8a8edac14 100644
--- a/newlib/libm/math/sf_ceil.c
+++ b/newlib/libm/math/sf_ceil.c
@@ -29,14 +29,15 @@ static float huge = 1.0e30;
#endif
{
__int32_t i0,j0;
- __uint32_t i;
+ __uint32_t i,ix;
GET_FLOAT_WORD(i0,x);
- j0 = ((i0>>23)&0xff)-0x7f;
+ ix = (i0&0x7fffffff);
+ j0 = (ix>>23)-0x7f;
if(j0<23) {
if(j0<0) { /* raise inexact if x != 0 */
if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
if(i0<0) {i0=0x80000000;}
- else if(i0!=0) { i0=0x3f800000;}
+ else if(!FLT_UWORD_IS_ZERO(ix)) { i0=0x3f800000;}
}
} else {
i = (0x007fffff)>>j0;
@@ -47,7 +48,7 @@ static float huge = 1.0e30;
}
}
} else {
- if(j0==0x80) return x+x; /* inf or NaN */
+ if(!FLT_UWORD_IS_FINITE(ix)) return x+x; /* inf or NaN */
else return x; /* x is integral */
}
SET_FLOAT_WORD(x,i0);