diff options
Diffstat (limited to 'lib/msun/src/s_exp2.c')
-rw-r--r-- | lib/msun/src/s_exp2.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/msun/src/s_exp2.c b/lib/msun/src/s_exp2.c index 6593a50..464e39c 100644 --- a/lib/msun/src/s_exp2.c +++ b/lib/msun/src/s_exp2.c @@ -37,7 +37,6 @@ __FBSDID("$FreeBSD$"); static const double huge = 0x1p1000, - twom1000 = 0x1p-1000, redux = 0x1.8p52 / TBLSIZE, P1 = 0x1.62e42fefa39efp-1, P2 = 0x1.ebfbdff82c575p-3, @@ -45,6 +44,8 @@ static const double P4 = 0x1.3b2ab88f70400p-7, P5 = 0x1.5d88003875c74p-10; +static volatile double twom1000 = 0x1p-1000; + static const double tbl[TBLSIZE * 2] = { /* exp2(z + eps) eps */ 0x1.6a09e667f3d5dp-1, 0x1.9880p-44, |