[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commits] r25238 - in /branches/eglibc-2_18: ./ libc/ libc/ports/ libc/ports/sysdeps/unix/sysv/linux/aarch64/ libc/ports/sysdeps/unix/...
- To: commits@xxxxxxxxxx
- Subject: [Commits] r25238 - in /branches/eglibc-2_18: ./ libc/ libc/ports/ libc/ports/sysdeps/unix/sysv/linux/aarch64/ libc/ports/sysdeps/unix/...
- From: joseph@xxxxxxxxxx
- Date: Fri, 07 Feb 2014 21:06:00 -0000
Author: joseph
Date: Fri Feb 7 13:06:00 2014
New Revision: 25238
Log:
Merge changes between r25088 and r25237 from /fsf/glibc-2_18-branch.
Modified:
branches/eglibc-2_18/ (props changed)
branches/eglibc-2_18/libc/ChangeLog
branches/eglibc-2_18/libc/NEWS
branches/eglibc-2_18/libc/ports/ChangeLog.aarch64
branches/eglibc-2_18/libc/ports/sysdeps/unix/sysv/linux/aarch64/clone.S
branches/eglibc-2_18/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nptl/c++-types.data (props changed)
branches/eglibc-2_18/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nptl/localplt.data (props changed)
branches/eglibc-2_18/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/single/nptl/c++-types.data (props changed)
branches/eglibc-2_18/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/single/nptl/localplt.data (props changed)
branches/eglibc-2_18/libc/sysdeps/x86/fpu/bits/mathinline.h
Propchange: branches/eglibc-2_18/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Feb 7 13:06:00 2014
@@ -1,2 +1,2 @@
-/fsf/glibc-2_18-branch:23787-25088
+/fsf/glibc-2_18-branch:23787-25237
/fsf/trunk:15224-23715
Modified: branches/eglibc-2_18/libc/ChangeLog
==============================================================================
--- branches/eglibc-2_18/libc/ChangeLog (original)
+++ branches/eglibc-2_18/libc/ChangeLog Fri Feb 7 13:06:00 2014
@@ -1,3 +1,9 @@
+2014-01-29 H.J. Lu <hongjiu.lu@xxxxxxxxx>
+
+ [BZ #16510]
+ * sysdeps/x86/fpu/bits/mathinline.h: Check __SSE2_MATH__ instead
+ of __x86_64__ when disabling x87 inline functions.
+
2014-01-20 H.J. Lu <hongjiu.lu@xxxxxxxxx>
[BZ #15605]
Modified: branches/eglibc-2_18/libc/NEWS
==============================================================================
--- branches/eglibc-2_18/libc/NEWS (original)
+++ branches/eglibc-2_18/libc/NEWS Fri Feb 7 13:06:00 2014
@@ -9,7 +9,7 @@
* The following bugs are resolved with this release:
- 15073, 15128, 15909, 15996, 16150, 16387.
+ 15073, 15128, 15909, 15996, 16150, 16169, 16387, 16510.
Version 2.18
Modified: branches/eglibc-2_18/libc/ports/ChangeLog.aarch64
==============================================================================
--- branches/eglibc-2_18/libc/ports/ChangeLog.aarch64 (original)
+++ branches/eglibc-2_18/libc/ports/ChangeLog.aarch64 Fri Feb 7 13:06:00 2014
@@ -1,3 +1,9 @@
+2014-01-20 Tom Tromey <tromey@xxxxxxxxxx>
+
+ [BZ #16169]
+ * sysdeps/unix/sysv/linux/aarch64/clone.S (__clone): Add CFI
+ directives; Zero x29.
+
2014-01-07 Marcus Shawcroft <marcus.shawcroft@xxxxxxxxxx>
[BZ #16387]
Modified: branches/eglibc-2_18/libc/ports/sysdeps/unix/sysv/linux/aarch64/clone.S
==============================================================================
--- branches/eglibc-2_18/libc/ports/sysdeps/unix/sysv/linux/aarch64/clone.S (original)
+++ branches/eglibc-2_18/libc/ports/sysdeps/unix/sysv/linux/aarch64/clone.S Fri Feb 7 13:06:00 2014
@@ -63,6 +63,7 @@
mov x8, #SYS_ify(clone)
/* X0:flags, x1:newsp, x2:parenttidptr, x3:newtls, x4:childtid. */
svc 0x0
+ cfi_endproc
cmp x0, #0
beq 2f
blt 3f
@@ -72,6 +73,9 @@
b syscall_error
2:
+ cfi_startproc
+ cfi_undefined (x30)
+ mov x29, 0
#ifdef RESET_PID
tbnz x5, #CLONE_THREAD_BIT, 3f
mov x0, #-1
@@ -93,7 +97,8 @@
/* We are done, pass the return value through x0. */
b HIDDEN_JUMPTARGET(_exit)
-
+ cfi_endproc
+ cfi_startproc
PSEUDO_END (__clone)
weak_alias (__clone, clone)
Propchange: branches/eglibc-2_18/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nptl/c++-types.data
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Feb 7 13:06:00 2014
@@ -1,3 +1,3 @@
-/fsf/glibc-2_18-branch/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nptl/c++-types.data:23787-25088
+/fsf/glibc-2_18-branch/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nptl/c++-types.data:23787-25237
/fsf/trunk/libc/ports/data/c++-types-powerpce500v2-linux-gnu.data:15224-19464
/fsf/trunk/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nptl/c++-types.data:19921-23715
Propchange: branches/eglibc-2_18/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nptl/localplt.data
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Feb 7 13:06:00 2014
@@ -1,3 +1,3 @@
-/fsf/glibc-2_18-branch/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nptl/localplt.data:23787-25088
+/fsf/glibc-2_18-branch/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nptl/localplt.data:23787-25237
/fsf/trunk/libc/ports/data/localplt-powerpce500v2-linux-gnu.data:15224-19464
/fsf/trunk/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nptl/localplt.data:19921-23715
Propchange: branches/eglibc-2_18/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/single/nptl/c++-types.data
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Feb 7 13:06:00 2014
@@ -1,3 +1,3 @@
-/fsf/glibc-2_18-branch/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/single/nptl/c++-types.data:23787-25088
+/fsf/glibc-2_18-branch/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/single/nptl/c++-types.data:23787-25237
/fsf/trunk/libc/ports/data/c++-types-powerpce500v1-linux-gnu.data:15224-19464
/fsf/trunk/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/single/nptl/c++-types.data:19921-23715
Propchange: branches/eglibc-2_18/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/single/nptl/localplt.data
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Feb 7 13:06:00 2014
@@ -1,3 +1,3 @@
-/fsf/glibc-2_18-branch/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/single/nptl/localplt.data:23787-25088
+/fsf/glibc-2_18-branch/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/single/nptl/localplt.data:23787-25237
/fsf/trunk/libc/ports/data/localplt-powerpce500v1-linux-gnu.data:15224-19464
/fsf/trunk/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/single/nptl/localplt.data:19921-23715
Modified: branches/eglibc-2_18/libc/sysdeps/x86/fpu/bits/mathinline.h
==============================================================================
--- branches/eglibc-2_18/libc/sysdeps/x86/fpu/bits/mathinline.h (original)
+++ branches/eglibc-2_18/libc/sysdeps/x86/fpu/bits/mathinline.h Fri Feb 7 13:06:00 2014
@@ -1,5 +1,5 @@
/* Inline math functions for i387 and SSE.
- Copyright (C) 1995-2013 Free Software Foundation, Inc.
+ Copyright (C) 1995-2014 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -384,7 +384,7 @@
# endif
#endif
-#ifndef __x86_64__
+#ifndef __SSE2_MATH__
# if ((!defined __NO_MATH_INLINES || defined __LIBC_INTERNAL_MATH_INLINES) \
&& defined __OPTIMIZE__)
@@ -970,4 +970,4 @@
return __value;)
# endif
-#endif /* !__x86_64__ */
+#endif /* !__SSE2_MATH__ */
_______________________________________________
Commits mailing list
Commits@xxxxxxxxxx
http://eglibc.org/cgi-bin/mailman/listinfo/commits