X-Git-Url: http://nsz.repo.hu/git/?p=libm;a=blobdiff_plain;f=src%2Fmath%2Fexp2l.c;h=ce085a73d987a5fe212020ba575df7e660151d1b;hp=c90a6f24e476503de52bea23813b55a5218cfb9e;hb=59c2bd747bce9b1e35c893b2ace9bea57523a901;hpb=43091ad6c77c394b7fcff618eed187129b0457fe diff --git a/src/math/exp2l.c b/src/math/exp2l.c index c90a6f2..ce085a7 100644 --- a/src/math/exp2l.c +++ b/src/math/exp2l.c @@ -27,12 +27,12 @@ #include "libm.h" -#if LD64 +#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024 long double exp2l(long double x) { return exp2l(x); } -#elif LD80 +#elif LDBL_MANT_DIG == 64 && LDBL_MAX_EXP == 16384 #define TBLBITS 7 #define TBLSIZE (1 << TBLBITS)