diff options
author | Paul E. Murphy <murphyp@linux.vnet.ibm.com> | 2016-07-01 13:17:09 -0500 |
---|---|---|
committer | Paul E. Murphy <murphyp@linux.vnet.ibm.com> | 2016-08-03 11:07:04 -0500 |
commit | f2de695bf6ab3d346bf0ec4e436f124cff8edfd4 (patch) | |
tree | 323d3c3ad199eeb5d52511243b179d326b67a15b /math/s_ccoshl.c | |
parent | b9e05ed07a3d805f12effa6b86c41a9d9c13a1f1 (diff) | |
download | glibc-f2de695bf6ab3d346bf0ec4e436f124cff8edfd4.tar glibc-f2de695bf6ab3d346bf0ec4e436f124cff8edfd4.tar.gz glibc-f2de695bf6ab3d346bf0ec4e436f124cff8edfd4.tar.bz2 glibc-f2de695bf6ab3d346bf0ec4e436f124cff8edfd4.zip |
Unify drift between _Complex function type variants
While trying to convert the _Complex function wrappers
into a single generic implementation, a few minor
variations between identical versions emerged.
Diffstat (limited to 'math/s_ccoshl.c')
-rw-r--r-- | math/s_ccoshl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/s_ccoshl.c b/math/s_ccoshl.c index 680da3a6f7..d38f0aaff6 100644 --- a/math/s_ccoshl.c +++ b/math/s_ccoshl.c @@ -94,7 +94,7 @@ __ccoshl (__complex__ long double x) feraiseexcept (FE_INVALID); } } - else if (__glibc_likely (rcls == FP_INFINITE)) + else if (rcls == FP_INFINITE) { /* Real part is infinite. */ if (__glibc_likely (icls > FP_ZERO)) |