From bd28890631e7333596ef963f174c2955a015b0e9 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 26 Oct 1998 14:52:04 +0000 Subject: (asinh): Put __sgn1 call outside log1p call. --- sysdeps/i386/fpu/__math.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sysdeps/i386/fpu/__math.h b/sysdeps/i386/fpu/__math.h index 80dd9e5..4388110 100644 --- a/sysdeps/i386/fpu/__math.h +++ b/sysdeps/i386/fpu/__math.h @@ -406,8 +406,8 @@ asinh (double __x) { register double __y = fabs (__x); - return log1p ((__y * __y / (sqrt (__y * __y + 1.0) + 1.0) + __y) - * __sgn1 (__x)); + return (log1p (__y * __y / (sqrt (__y * __y + 1.0) + 1.0) + __y) + * __sgn1 (__x)); } __MATH_INLINE double acosh (double __x); -- cgit v1.1