aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-10-26 14:52:04 +0000
committerUlrich Drepper <drepper@redhat.com>1998-10-26 14:52:04 +0000
commitbd28890631e7333596ef963f174c2955a015b0e9 (patch)
treec6e54cb37a9686fcd259e47ab9536e809b89c349
parentd5ff2f1fe0f3c18437c78ff399b7361f328e6f9a (diff)
downloadglibc-bd28890631e7333596ef963f174c2955a015b0e9.zip
glibc-bd28890631e7333596ef963f174c2955a015b0e9.tar.gz
glibc-bd28890631e7333596ef963f174c2955a015b0e9.tar.bz2
(asinh): Put __sgn1 call outside log1p call.
-rw-r--r--sysdeps/i386/fpu/__math.h4
1 files 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);