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/__cosl.c | |
parent | d9c1d72cdc993f3f701f0eea74f370420582e5f6 (diff) | |
parent | eca1c35e5be967478c8fe9381c6f4652b6645d5e (diff) | |
download | musl-01084202815fefbb7db23825d8b11a570c455e13.tar.gz musl-01084202815fefbb7db23825d8b11a570c455e13.tar.bz2 musl-01084202815fefbb7db23825d8b11a570c455e13.tar.xz musl-01084202815fefbb7db23825d8b11a570c455e13.zip |
Merge remote branch 'nsz/master'
Diffstat (limited to 'src/math/__cosl.c')
-rw-r--r-- | src/math/__cosl.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/math/__cosl.c b/src/math/__cosl.c index 9ea51ecf..80036ddb 100644 --- a/src/math/__cosl.c +++ b/src/math/__cosl.c @@ -43,17 +43,8 @@ */ static const double one = 1.0; -// FIXME -/* Long double constants are slow on these arches, and broken on i386. */ -static const volatile double -C1hi = 0.041666666666666664, /* 0x15555555555555.0p-57 */ -C1lo = 2.2598839032744733e-18; /* 0x14d80000000000.0p-111 */ -#define C1 ((long double)C1hi + C1lo) - -#if 0 static const long double C1 = 0.0416666666666666666136L; /* 0xaaaaaaaaaaaaaa9b.0p-68 */ -#endif static const double C2 = -0.0013888888888888874, /* -0x16c16c16c16c10.0p-62 */ |