1 /* sf_rint.c -- float version of s_rint.c.
2 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
6 * ====================================================
7 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
9 * Developed at SunPro, a Sun Microsystems, Inc. business.
10 * Permission to use, copy, modify, and distribute this
11 * software is freely granted, provided that this notice
13 * ====================================================
24 8.3886080000e+06, /* 0x4b000000 */
25 -8.3886080000e+06, /* 0xcb000000 */
44 if(FLT_UWORD_IS_ZERO(ix
))
49 i0
|= ((i1
|-i1
)>>9)&0x400000;
54 SET_FLOAT_WORD(t
,(i0
&0x7fffffff)|(sx
<<31));
58 if((i0
&i
)==0) return x
; /* x is integral */
60 if((i0
&i
)!=0) i0
= (i0
&(~i
))|((0x200000)>>j0
);
63 if(!FLT_UWORD_IS_FINITE(ix
)) return x
+x
; /* inf or NaN */
65 return x
; /* x is integral */
72 #ifdef _DOUBLE_IS_32BITS
81 return (double) rintf((float) x
);
84 #endif /* defined(_DOUBLE_IS_32BITS) */