aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/ieee754
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-04-05 17:47:09 +0000
committerUlrich Drepper <drepper@redhat.com>2001-04-05 17:47:09 +0000
commit96dd1a812a0aedb0f5df4ec4a5cb2fd67bb8876f (patch)
tree3600e7efbc6d3f1735ef52e8334062d76f15085f /sysdeps/ieee754
parente2027cc35e95ef20321cd076bb2f50309e1d086f (diff)
downloadglibc-96dd1a812a0aedb0f5df4ec4a5cb2fd67bb8876f.tar
glibc-96dd1a812a0aedb0f5df4ec4a5cb2fd67bb8876f.tar.gz
glibc-96dd1a812a0aedb0f5df4ec4a5cb2fd67bb8876f.tar.bz2
glibc-96dd1a812a0aedb0f5df4ec4a5cb2fd67bb8876f.zip
Update.
2001-04-05 Ulrich Drepper <drepper@redhat.com> * sysdeps/i386/fpu/libm-test-ulps: Relax errors for asinl.
Diffstat (limited to 'sysdeps/ieee754')
-rw-r--r--sysdeps/ieee754/ldbl-96/e_asinl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/ldbl-96/e_asinl.c b/sysdeps/ieee754/ldbl-96/e_asinl.c
index 202e245a41..e469431b0d 100644
--- a/sysdeps/ieee754/ldbl-96/e_asinl.c
+++ b/sysdeps/ieee754/ldbl-96/e_asinl.c
@@ -92,7 +92,7 @@ __ieee754_asinl (x)
ix = (ix << 16) | (i0 >> 16);
if (ix >= 0x3fff8000)
{ /* |x|>= 1 */
- if (ix < 0x7fff0000 && ((i0 - 0x80000000) | i1) == 0)
+ if (ix == 0x3fff8000 && ((i0 - 0x80000000) | i1) == 0)
/* asin(1)=+-pi/2 with inexact */
return x * pio2_hi + x * pio2_lo;
return (x - x) / (x - x); /* asin(|x|>1) is NaN */