summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan S. Arnold <rsa@linux.vnet.ibm.com>2013-07-25 12:34:03 -0500
committerRyan S. Arnold <rsa@linux.vnet.ibm.com>2013-07-25 12:34:03 -0500
commit496c92958b1c70bb9532c612ce68b1f9ffae2814 (patch)
tree6f74bd2970e854b2b728921df6cbd8e181a847d8
parent9ba3d0c7f4157c4ee01c08bceeeeb3f1a5999f4a (diff)
downloadglibc-rsa/2.17_backports_v2.tar.gz
BZ #15055: Use __ieee754_sqrl in acoshl for lbdl-128ibmrsa/2.17_backports_v2
(backported from e0b780ad5b94209bf99bf498314bc5c160dc2a15)
-rw-r--r--ChangeLog6
-rw-r--r--NEWS2
-rw-r--r--sysdeps/ieee754/ldbl-128ibm/e_acoshl.c2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1fed1cc78d..1d00d5b814 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-02-28 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
+
+ [BZ #15055]
+ * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Use
+ __ieee754_sqrl instead of __sqrl.
+
2013-01-18 Anton Blanchard <anton@samba.org>
Ryan S. Arnold <rsa@linux.vnet.ibm.com>
diff --git a/NEWS b/NEWS
index 10c1ca62ac..c6380a77be 100644
--- a/NEWS
+++ b/NEWS
@@ -8,7 +8,7 @@ using `glibc' in the "product" field.
Version 2.17.1
* The following bugs are resolved with this release:
- 15003, 15006, 15122, 15759.
+ 15003, 15006, 15055, 15122, 15759.
Version 2.17
diff --git a/sysdeps/ieee754/ldbl-128ibm/e_acoshl.c b/sysdeps/ieee754/ldbl-128ibm/e_acoshl.c
index 117bd0f052..abc78a35bd 100644
--- a/sysdeps/ieee754/ldbl-128ibm/e_acoshl.c
+++ b/sysdeps/ieee754/ldbl-128ibm/e_acoshl.c
@@ -52,7 +52,7 @@ __ieee754_acoshl(long double x)
return __ieee754_logl(2.0*x-one/(x+__ieee754_sqrtl(t-one)));
} else { /* 1<x<2 */
t = x-one;
- return __log1p(t+__sqrtl(2.0*t+t*t));
+ return __log1p(t+__ieee754_sqrtl(2.0*t+t*t));
}
}
strong_alias (__ieee754_acoshl, __acoshl_finite)