1 /* s_nextafterf.c -- float version of s_nextafter.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 * ====================================================
17 #include "math_private.h"
20 nextafterf(float x
, float y
)
26 ix
= hx
&0x7fffffff; /* |x| */
27 iy
= hy
&0x7fffffff; /* |y| */
29 if((ix
>0x7f800000) || /* x is nan */
30 (iy
>0x7f800000)) /* y is nan */
32 if(x
==y
) return y
; /* x=y, return y */
33 if(ix
==0) { /* x == 0 */
34 SET_FLOAT_WORD(x
,(hy
&0x80000000)|1);/* return +-minsubnormal */
36 if(y
==x
) return y
; else return x
; /* raise underflow flag */
38 if(hx
>=0) { /* x > 0 */
39 if(hx
>hy
) { /* x > y, x -= ulp */
41 } else { /* x < y, x += ulp */
45 if(hy
>=0||hx
>hy
){ /* x < y, x -= ulp */
47 } else { /* x > y, x += ulp */
52 if(hy
>=0x7f800000) return x
+x
; /* overflow */
53 if(hy
<0x00800000) { /* underflow */
55 if(y
!=x
) { /* raise underflow flag */