1 /* s_nextafterl.c -- long double version of s_nextafter.c.
2 * Conversion to long double by Ulrich Drepper,
3 * Cygnus Support, drepper@cygnus.com.
4 * Fixed for m68k by Andreas Schwab <schwab@suse.de>.
8 * ====================================================
9 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
11 * Developed at SunPro, a Sun Microsystems, Inc. business.
12 * Permission to use, copy, modify, and distribute this
13 * software is freely granted, provided that this notice
15 * ====================================================
18 #if defined(LIBM_SCCS) && !defined(lint)
19 static char rcsid[] = "$NetBSD: $";
24 * return the next machine floating-point number of x in the
30 #include "math_private.h"
33 long double __nextafterl(long double x, long double y)
35 long double __nextafterl(x,y)
39 int32_t ix,iy,esx,esy;
40 u_int32_t hx,hy,lx,ly;
42 GET_LDOUBLE_WORDS(esx,hx,lx,x);
43 GET_LDOUBLE_WORDS(esy,hy,ly,y);
44 ix = esx&0x7fff; /* |x| */
45 iy = esy&0x7fff; /* |y| */
47 if(((ix==0x7fff)&&((hx&0x7fffffff)|lx)!=0) || /* x is nan */
48 ((iy==0x7fff)&&((hy&0x7fffffff)|ly)!=0)) /* y is nan */
50 if(x==y) return y; /* x=y, return y */
51 if((ix|hx|lx)==0) { /* x == 0 */
52 SET_LDOUBLE_WORDS(x,esy&0x8000,0,1);/* return +-minsubnormal */
54 if(y==x) return y; else return x; /* raise underflow flag */
56 if(esx>=0) { /* x > 0 */
57 if(esx>esy||((esx==esy) && (hx>hy||((hx==hy)&&(lx>ly))))) {
60 if (ix != 0 && hx == 0x80000000) hx = 0;
65 } else { /* x < y, x += ulp */
76 if(esy>=0||esx>esy||((esx==esy) && (hx>hy||((hx==hy)&&(lx>ly))))){
79 if (ix != 0 && hx == 0x80000000) hx = 0;
84 } else { /* x > y, x += ulp */
96 if(esy==0x7fff) return x+x; /* overflow */
97 if(esy==0 && (hx & 0x80000000) == 0) { /* underflow */
99 if(y!=x) { /* raise underflow flag */
100 SET_LDOUBLE_WORDS(y,esx,hx,lx);
104 SET_LDOUBLE_WORDS(x,esx,hx,lx);
107 weak_alias (__nextafterl, nextafterl)
108 strong_alias (__nextafterl, __nexttowardl)
109 weak_alias (__nextafterl, nexttowardl)