fix regression from a745c4bfc8a9b5db4e48387170da0dc1d39e3abe
[uclibc-ng.git] / libm / w_scalb.c
blobc4cecc322911176d4d70f5916aa1ee961f44678f
1 /* Copyright (C) 2011-2016 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@gmail.com>, 2011.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <math.h>
20 #include "math_private.h"
22 #if __UCLIBC_HAS_FENV__
23 #include <errno.h>
25 static double
26 __attribute__ ((noinline))
27 sysv_scalb (double x, double fn)
29 double z = __ieee754_scalb (x, fn);
31 if (__builtin_expect (isinf (z), 0))
33 if (isfinite (x))
34 return __kernel_standard (x, fn, 32); /* scalb overflow */
35 else
36 __set_errno (ERANGE);
38 else if (__builtin_expect (z == 0.0, 0) && z != x)
39 return __kernel_standard (x, fn, 33); /* scalb underflow */
41 return z;
43 #endif /* __UCLIBC_HAS_FENV__ */
45 /* Here might be a check like "#if defined __UCLIBC_SUSV3_LEGACY__"
46 * but because there is a sysv_scalb() func, it was decided
47 * not to check yhis macro.
50 /* Wrapper scalb */
51 double
52 scalb (double x, double fn)
54 #if __UCLIBC_HAS_FENV__
55 if (__builtin_expect (_LIB_VERSION == _SVID_,0))
56 return sysv_scalb (x, fn);
57 else
59 double z = __ieee754_scalb (x, fn);
61 if (__builtin_expect (!isfinite (z) || z == 0.0, 0))
63 if (isnan (z))
65 if (!isnan (x) && !isnan (fn))
66 __set_errno (EDOM);
68 else if (isinf (z))
70 if (!isinf (x) && !isinf (fn))
71 __set_errno (ERANGE);
73 else
75 /* z == 0. */
76 if (x != 0.0 && !isinf (fn))
77 __set_errno (ERANGE);
80 return z;
82 #else
83 return __ieee754_scalb (x, fn);
84 #endif /* __UCLIBC_HAS_FENV__ */
86 libm_hidden_def(scalb)