fix compile with DODEBUG=y
[uclibc-ng.git] / libm / e_scalb.c
blob9e1a3f74292093c5ac44f0e6668db4bb0085d2ce
1 /*
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
8 * is preserved.
9 * ====================================================
13 * __ieee754_scalb(x, fn) is provided for
14 * passing various standard test suites.
15 * One should use scalbn() instead.
18 #include "math.h"
19 #include "math_private.h"
20 #include <errno.h>
22 double __ieee754_scalb(double x, double fn)
24 if (isnan(x)||isnan(fn)) return x*fn;
25 if (!isfinite(fn)) {
26 if(fn>0.0) return x*fn;
27 else return x/(-fn);
29 if (rint(fn)!=fn) return (fn-fn)/(fn-fn);
30 if ( fn > 65000.0) return scalbn(x, 65000);
31 if (-fn > 65000.0) return scalbn(x,-65000);
32 return scalbn(x,(int)fn);
35 #if defined __UCLIBC_SUSV3_LEGACY__
37 * wrapper scalb(double x, double fn) is provided for
38 * passing various standard test suites.
39 * One should use scalbn() instead.
41 #ifndef _IEEE_LIBM
42 double scalb(double x, double fn)
44 double z = __ieee754_scalb(x, fn);
45 if (_LIB_VERSION == _IEEE_)
46 return z;
47 if (!(isfinite(z) || isnan(z)) && isfinite(x))
48 return __kernel_standard(x, (double)fn, 32); /* scalb overflow */
49 if (z == 0.0 && z != x)
50 return __kernel_standard(x, (double)fn, 33); /* scalb underflow */
51 if (!isfinite(fn))
52 errno = ERANGE;
53 return z;
55 #else
56 strong_alias(__ieee754_scalb, scalb)
57 #endif
58 libm_hidden_def(scalb)
60 #endif /* UCLIBC_SUSV3_LEGACY */