2 * ====================================================
3 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5 * Developed at SunPro, a Sun Microsystems, Inc. business.
6 * Permission to use, copy, modify, and distribute this
7 * software is freely granted, provided that this notice
9 * ====================================================
14 * IEEE 754 logb. Included to pass IEEE test suite. Not recommend.
19 #include "math_private.h"
24 EXTRACT_WORDS(ix
,lx
,x
);
25 ix
&= 0x7fffffff; /* high |x| */
26 if((ix
|lx
)==0) return -1.0/fabs(x
);
27 if(ix
>=0x7ff00000) return x
*x
;
28 if((ix
>>=20)==0) /* IEEE 754 logb */
31 return (double) (ix
-1023);