[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[commits] r9153 - in /trunk/libc: ./ localedata/ localedata/locales/ math/ sysdeps/ieee754/ldbl-128/ sysdeps/x86_64/multiarch/
- To: commits@xxxxxxxxxx
- Subject: [commits] r9153 - in /trunk/libc: ./ localedata/ localedata/locales/ math/ sysdeps/ieee754/ldbl-128/ sysdeps/x86_64/multiarch/
- From: joseph@xxxxxxxxxx
- Date: Wed, 28 Oct 2009 16:13:02 -0000
Author: joseph
Date: Wed Oct 28 09:13:02 2009
New Revision: 9153
Log:
Merge changes between r9122 and r9152 from /fsf/trunk.
Added:
trunk/libc/localedata/locales/ps_AF
- copied unchanged from r9152, fsf/trunk/libc/localedata/locales/ps_AF
trunk/libc/sysdeps/x86_64/multiarch/strchr.S
- copied unchanged from r9152, fsf/trunk/libc/sysdeps/x86_64/multiarch/strchr.S
trunk/libc/sysdeps/x86_64/multiarch/strend-sse4.S
- copied unchanged from r9152, fsf/trunk/libc/sysdeps/x86_64/multiarch/strend-sse4.S
trunk/libc/sysdeps/x86_64/multiarch/strrchr.S
- copied unchanged from r9152, fsf/trunk/libc/sysdeps/x86_64/multiarch/strrchr.S
Modified:
trunk/libc/ChangeLog
trunk/libc/NEWS
trunk/libc/localedata/ChangeLog
trunk/libc/localedata/SUPPORTED
trunk/libc/math/w_coshl.c
trunk/libc/sysdeps/ieee754/ldbl-128/w_expl.c
trunk/libc/sysdeps/x86_64/multiarch/Makefile
Modified: trunk/libc/ChangeLog
==============================================================================
--- trunk/libc/ChangeLog (original)
+++ trunk/libc/ChangeLog Wed Oct 28 09:13:02 2009
@@ -1,3 +1,21 @@
+2009-10-24 Joseph Myers <joseph@xxxxxxxxxxxxxxxx>
+
+ * sysdeps/ieee754/ldbl-128/w_expl.c: Add hidden_def (__expl).
+
+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
+ strend-sse4.
+ * sysdeps/x86_64/multiarch/strchr.S: New file.
+ * sysdeps/x86_64/multiarch/strend-sse4.S: New file.
+ * sysdeps/x86_64/multiarch/strrchr.S: New file.
+
2009-10-21 Andreas Schwab <schwab@xxxxxxxxxx>
* elf/dl-sym.c (do_sym): Resolve STT_GNU_IFUNC symbols.
Modified: trunk/libc/NEWS
==============================================================================
--- trunk/libc/NEWS (original)
+++ trunk/libc/NEWS Wed Oct 28 09:13:02 2009
@@ -1,4 +1,4 @@
-GNU C Library NEWS -- history of user-visible changes. 2009-8-8
+GNU C Library NEWS -- history of user-visible changes. 2009-10-15
Copyright (C) 1992-2008, 2009 Free Software Foundation, Inc.
See the end for copying conditions.
@@ -54,6 +54,8 @@
* Using condvars with PI mutexes is now more efficient due to kernel
support for requeueing to PI futexes. NPTL support added for x86-64.
Implemented by Ulrich Drepper.
+
+* New locale: ps_AF
Version 2.10
Modified: trunk/libc/localedata/ChangeLog
==============================================================================
--- trunk/libc/localedata/ChangeLog (original)
+++ trunk/libc/localedata/ChangeLog Wed Oct 28 09:13:02 2009
@@ -1,3 +1,11 @@
+2009-10-15 Ulrich Drepper <drepper@xxxxxxxxxx>
+
+ * SUPPORTED (SUPPORTED-LOCALES): Add ps_AF.UTF-8.
+
+ * locale/ps_AF: New file.
+ Contributed by Sayamindu Dasgupta <sayamindu@xxxxxxxxx> and
+ Pravin Satpute <psatpute@xxxxxxxxxx>.
+
2009-06-16 Ulrich Drepper <drepper@xxxxxxxxxx>
[BZ #10011]
Modified: trunk/libc/localedata/SUPPORTED
==============================================================================
--- trunk/libc/localedata/SUPPORTED (original)
+++ trunk/libc/localedata/SUPPORTED Wed Oct 28 09:13:02 2009
@@ -317,6 +317,7 @@
pap_AN/UTF-8 \
pl_PL.UTF-8/UTF-8 \
pl_PL/ISO-8859-2 \
+ps_AF/UTF-8 \
pt_BR.UTF-8/UTF-8 \
pt_BR/ISO-8859-1 \
pt_PT.UTF-8/UTF-8 \
Modified: trunk/libc/math/w_coshl.c
==============================================================================
--- trunk/libc/math/w_coshl.c (original)
+++ trunk/libc/math/w_coshl.c Wed Oct 28 09:13:02 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
Modified: trunk/libc/sysdeps/ieee754/ldbl-128/w_expl.c
==============================================================================
--- trunk/libc/sysdeps/ieee754/ldbl-128/w_expl.c (original)
+++ trunk/libc/sysdeps/ieee754/ldbl-128/w_expl.c Wed Oct 28 09:13:02 2009
@@ -55,4 +55,5 @@
return z;
#endif
}
+hidden_def (__expl)
weak_alias (__expl, expl)
Modified: trunk/libc/sysdeps/x86_64/multiarch/Makefile
==============================================================================
--- trunk/libc/sysdeps/x86_64/multiarch/Makefile (original)
+++ trunk/libc/sysdeps/x86_64/multiarch/Makefile Wed Oct 28 09:13:02 2009
@@ -4,7 +4,8 @@
endif
ifeq ($(subdir),string)
-sysdep_routines += stpncpy-c strncpy-c strcmp-ssse3 strncmp-ssse3
+sysdep_routines += stpncpy-c strncpy-c strcmp-ssse3 strncmp-ssse3 \
+ strend-sse4
ifeq (yes,$(config-cflags-sse4))
sysdep_routines += strcspn-c strpbrk-c strspn-c strstr-c strcasestr-c
CFLAGS-strcspn-c.c += -msse4