summaryrefslogtreecommitdiff
path: root/src/math/__sinl.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-03-19 18:30:35 -0400
committerRich Felker <dalias@aerifal.cx>2012-03-19 18:30:35 -0400
commit01084202815fefbb7db23825d8b11a570c455e13 (patch)
tree5626a4356831b9e280ef16ab337b6699039a013b /src/math/__sinl.c
parentd9c1d72cdc993f3f701f0eea74f370420582e5f6 (diff)
parenteca1c35e5be967478c8fe9381c6f4652b6645d5e (diff)
downloadmusl-01084202815fefbb7db23825d8b11a570c455e13.tar.gz
Merge remote branch 'nsz/master'
Diffstat (limited to 'src/math/__sinl.c')
-rw-r--r--src/math/__sinl.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/math/__sinl.c b/src/math/__sinl.c
index 71851d81..67c4bdc5 100644
--- a/src/math/__sinl.c
+++ b/src/math/__sinl.c
@@ -26,17 +26,8 @@
static const double half = 0.5;
-// FIXME
-/* Long double constants are slow on these arches, and broken on i386. */
-static const volatile double
-S1hi = -0.16666666666666666, /* -0x15555555555555.0p-55 */
-S1lo = -9.2563760475949941e-18; /* -0x15580000000000.0p-109 */
-#define S1 ((long double)S1hi + S1lo)
-
-#if 0
static const long double
S1 = -0.166666666666666666671L; /* -0xaaaaaaaaaaaaaaab.0p-66 */
-#endif
static const double
S2 = 0.0083333333333333332, /* 0x11111111111111.0p-59 */