diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-03-16 20:08:02 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-03-16 20:08:02 +0000 |
commit | c36e1d2369f149a64c759f3ad6f4cc5a03b03b62 (patch) | |
tree | e08402c0a348536aedf71d15bc7c4de01089066c /math/w_j1.c | |
parent | 11b90b9f504df5b2da91ce3a06c1657d99e4a95f (diff) | |
download | glibc-c36e1d2369f149a64c759f3ad6f4cc5a03b03b62.tar.gz glibc-c36e1d2369f149a64c759f3ad6f4cc5a03b03b62.tar.xz glibc-c36e1d2369f149a64c759f3ad6f4cc5a03b03b62.zip |
Disable Bessel function TLOSS errors in POSIX mode.
Diffstat (limited to 'math/w_j1.c')
-rw-r--r-- | math/w_j1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/w_j1.c b/math/w_j1.c index e9a5357b76..40600503ee 100644 --- a/math/w_j1.c +++ b/math/w_j1.c @@ -26,7 +26,7 @@ double j1 (double x) { if (__builtin_expect (isgreater (fabs (x), X_TLOSS), 0) - && _LIB_VERSION != _IEEE_) + && _LIB_VERSION != _IEEE_ && _LIB_VERSION != _POSIX_) /* j1(|x|>X_TLOSS) */ return __kernel_standard (x, x, 36); @@ -53,7 +53,7 @@ y1 (double x) else if (x == 0.0) /* d = -one/(x-x) */ return __kernel_standard (x, x, 10); - else + else if (_LIB_VERSION != _POSIX_) /* y1(x>X_TLOSS) */ return __kernel_standard (x, x, 37); } |