x86: Expand the comment on when REP STOSB is used on memset
[glibc.git] / math / w_exp2l_compat.c
bloba132015866f32d115e2eec72976af4db007af3e2
1 /*
2 * wrapper exp2l(x)
3 */
5 #include <math.h>
6 #include <math_private.h>
7 #include <math-svid-compat.h>
8 #include <libm-alias-ldouble.h>
10 #if LIBM_SVID_COMPAT
11 long double
12 __exp2l (long double x)
14 long double z = __ieee754_exp2l (x);
15 if (__builtin_expect (!isfinite (z) || z == 0, 0)
16 && isfinite (x) && _LIB_VERSION != _IEEE_)
17 /* exp2 overflow: 244, exp2 underflow: 245 */
18 return __kernel_standard_l (x, x, 244 + !!signbit (x));
20 return z;
22 libm_alias_ldouble (__exp2, exp2)
23 #endif