summaryrefslogtreecommitdiff
path: root/src/math/__tanl.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-03-19 22:07:43 -0400
committerRich Felker <dalias@aerifal.cx>2012-03-19 22:07:43 -0400
commit97721a5508415a2f10eb068e022093811c9ff8be (patch)
tree88e9ce153895ad949576fa7ce1eeee4b02286479 /src/math/__tanl.c
parentacb744921b73f5a73803e533e5e4a4896d164a26 (diff)
parent0cbb65479147ecdaa664e88cc2a5a925f3de502f (diff)
downloadmusl-97721a5508415a2f10eb068e022093811c9ff8be.tar.gz
Merge remote branch 'nsz/master'
Diffstat (limited to 'src/math/__tanl.c')
-rw-r--r--src/math/__tanl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/math/__tanl.c b/src/math/__tanl.c
index e39e9df4..50ba2140 100644
--- a/src/math/__tanl.c
+++ b/src/math/__tanl.c
@@ -51,8 +51,7 @@ long double __tanl(long double x, long double y, int iy) {
int i;
iy = iy == 1 ? -1 : 1; /* XXX recover original interface */
- // FIXME: this is wrong, use copysign, signbit or union bithack
- osign = x >= 0 ? 1.0 : -1.0; /* XXX slow, probably wrong for -0 */
+ osign = copysignl(1.0, x);
if (fabsl(x) >= 0.67434) {
if (x < 0) {
x = -x;