diff options
Diffstat (limited to 'math/w_atanhl.c')
-rw-r--r-- | math/w_atanhl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/math/w_atanhl.c b/math/w_atanhl.c index 319535d172..6b00bbb4ea 100644 --- a/math/w_atanhl.c +++ b/math/w_atanhl.c @@ -26,10 +26,10 @@ __atanhl (long double x) { if (__builtin_expect (isgreaterequal (fabsl (x), 1.0L), 0) && _LIB_VERSION != _IEEE_) - return __kernel_standard (x, x, - fabsl (x) > 1.0L - ? 230 /* atanh(|x|>1) */ - : 231); /* atanh(|x|==1) */ + return __kernel_standard_l (x, x, + fabsl (x) > 1.0L + ? 230 /* atanh(|x|>1) */ + : 231); /* atanh(|x|==1) */ return __ieee754_atanhl (x); } |