diff options
author | Ondřej Bílka <neleai@seznam.cz> | 2013-09-10 19:14:51 +0200 |
---|---|---|
committer | Ondřej Bílka <neleai@seznam.cz> | 2013-09-10 19:15:33 +0200 |
commit | c7cabd1355e79b7e111904bb3985908cae185b73 (patch) | |
tree | a2bc1962e88ad4de6e9149eb9cebc978d98e00f0 /sysdeps/ieee754/dbl-64/s_expm1.c | |
parent | aa04af0078dafb6af40b1ee0ede140eedbf67c4f (diff) | |
download | glibc-c7cabd1355e79b7e111904bb3985908cae185b73.tar.gz glibc-c7cabd1355e79b7e111904bb3985908cae185b73.tar.xz glibc-c7cabd1355e79b7e111904bb3985908cae185b73.zip |
Remove DO_NOT_USE_THIS conditionals.
Diffstat (limited to 'sysdeps/ieee754/dbl-64/s_expm1.c')
-rw-r--r-- | sysdeps/ieee754/dbl-64/s_expm1.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sysdeps/ieee754/dbl-64/s_expm1.c b/sysdeps/ieee754/dbl-64/s_expm1.c index 1a4bcd979a..87da7eb7e6 100644 --- a/sysdeps/ieee754/dbl-64/s_expm1.c +++ b/sysdeps/ieee754/dbl-64/s_expm1.c @@ -184,14 +184,10 @@ __expm1(double x) /* x is now in primary range */ hfx = 0.5*x; hxs = x*hfx; -#ifdef DO_NOT_USE_THIS - r1 = one+hxs*(Q1+hxs*(Q2+hxs*(Q3+hxs*(Q4+hxs*Q5)))); -#else R1 = one+hxs*Q[1]; h2 = hxs*hxs; R2 = Q[2]+hxs*Q[3]; h4 = h2*h2; R3 = Q[4]+hxs*Q[5]; r1 = R1 + h2*R2 + h4*R3; -#endif t = 3.0-r1*hfx; e = hxs*((r1-t)/(6.0 - x*t)); if(k==0) return x - (x*e-hxs); /* c is 0 */ |