diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-03-19 18:30:35 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-03-19 18:30:35 -0400 |
commit | 01084202815fefbb7db23825d8b11a570c455e13 (patch) | |
tree | 5626a4356831b9e280ef16ab337b6699039a013b /src/math/acosl.c | |
parent | d9c1d72cdc993f3f701f0eea74f370420582e5f6 (diff) | |
parent | eca1c35e5be967478c8fe9381c6f4652b6645d5e (diff) | |
download | musl-01084202815fefbb7db23825d8b11a570c455e13.tar.gz musl-01084202815fefbb7db23825d8b11a570c455e13.tar.xz musl-01084202815fefbb7db23825d8b11a570c455e13.zip |
Merge remote branch 'nsz/master'
Diffstat (limited to 'src/math/acosl.c')
-rw-r--r-- | src/math/acosl.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/math/acosl.c b/src/math/acosl.c index 510e16f1..170520fe 100644 --- a/src/math/acosl.c +++ b/src/math/acosl.c @@ -25,20 +25,8 @@ long double acosl(long double x) #include "__invtrigl.h" static const long double -one = 1.00000000000000000000e+00; - -// FIXME -//#ifdef __i386__ -/* XXX Work around the fact that gcc truncates long double constants on i386 */ -static const volatile double -pi1 = 3.14159265358979311600e+00, /* 0x1.921fb54442d18p+1 */ -pi2 = 1.22514845490862001043e-16; /* 0x1.1a80000000000p-53 */ -#define pi ((long double)pi1 + pi2) -//#else -#if 0 -static const long double +one = 1.00000000000000000000e+00, pi = 3.14159265358979323846264338327950280e+00L; -#endif long double acosl(long double x) { |