[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[commits] r9145 - in /fsf/trunk/libc: ChangeLog math/w_coshl.c
- To: commits@xxxxxxxxxx
- Subject: [commits] r9145 - in /fsf/trunk/libc: ChangeLog math/w_coshl.c
- From: eglibc@xxxxxxxxxx
- Date: Wed, 28 Oct 2009 07:03:40 -0000
Author: eglibc
Date: Wed Oct 28 00:03:37 2009
New Revision: 9145
Log:
Import glibc-mainline for 2009-10-28
Modified:
fsf/trunk/libc/ChangeLog
fsf/trunk/libc/math/w_coshl.c
Modified: fsf/trunk/libc/ChangeLog
==============================================================================
--- fsf/trunk/libc/ChangeLog (original)
+++ fsf/trunk/libc/ChangeLog Wed Oct 28 00:03:37 2009
@@ -1,3 +1,9 @@
+2009-10-27 Jakub Jelinek <jakub@xxxxxxxxxx>
+
+ [BZ #10817]
+ * math/w_coshl.c (__coshl): Use __finitel instead of __finite.
+ Reported by Ray Chason.
+
2009-10-21 H.J. Lu <hongjiu.lu@xxxxxxxxx>
* sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
Modified: fsf/trunk/libc/math/w_coshl.c
==============================================================================
--- fsf/trunk/libc/math/w_coshl.c (original)
+++ fsf/trunk/libc/math/w_coshl.c Wed Oct 28 00:03:37 2009
@@ -38,8 +38,8 @@
long double z;
z = __ieee754_coshl(x);
if(_LIB_VERSION == _IEEE_ || __isnanl(x)) return z;
- if(!__finite(z) && __finite(x)) {
- return __kernel_standard(x,x,205); /* cosh overflow */
+ if(!__finitel(z) && __finitel(x)) {
+ return __kernel_standard(x,x,205); /* cosh overflow */
} else
return z;
#endif