From: Ulrich Drepper Date: Mon, 26 Oct 1998 14:52:04 +0000 (+0000) Subject: (asinh): Put __sgn1 call outside log1p call. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd28890631e7333596ef963f174c2955a015b0e9;p=thirdparty%2Fglibc.git (asinh): Put __sgn1 call outside log1p call. --- diff --git a/sysdeps/i386/fpu/__math.h b/sysdeps/i386/fpu/__math.h index 80dd9e508d8..43881109ccd 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);