This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.20-273-g167da42


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  167da422b30b35c9eb9fc819ce5d3b3b0d65c6f4 (commit)
      from  6b5189eb2000761cd68c3c54c0d03357a9aaec67 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=167da422b30b35c9eb9fc819ce5d3b3b0d65c6f4

commit 167da422b30b35c9eb9fc819ce5d3b3b0d65c6f4
Author: J. Brown <jb999@gmx.de>
Date:   Thu Oct 23 15:28:06 2014 +0200

    Recognize recent x86 CPUs in string.h

diff --git a/ChangeLog b/ChangeLog
index e0313b8..be49dba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-11-27  J. Brown  <jb999@gmx.de>
+
+	* sysdeps/x86/bits/string.h: Add recent CPUs.
+
 2014-11-27  Joseph Myers  <joseph@codesourcery.com>
 
 	* misc/tst-pselect.c (do_test): Use sigprocmask instead of
diff --git a/sysdeps/x86/bits/string.h b/sysdeps/x86/bits/string.h
index 423ad38..8d5daba 100644
--- a/sysdeps/x86/bits/string.h
+++ b/sysdeps/x86/bits/string.h
@@ -29,9 +29,14 @@
 			    || defined __pentiumpro__ || defined __pentium4__ \
 			    || defined __nocona__ || defined __atom__ 	      \
 			    || defined __core2__ || defined __corei7__	      \
+			    || defined __sandybridge__ || defined __haswell__ \
+			    || defined __bonnell__ || defined __silvermont__  \
 			    || defined __k6__ || defined __geode__	      \
 			    || defined __k8__ || defined __athlon__	      \
-			    || defined __amdfam10__)
+			    || defined __amdfam10__ || defined __bdver1__     \
+			    || defined __bdver2__ || defined __bdver3__	      \
+			    || defined __bdver4__ || defined __btver1__	      \
+			    || defined __btver2__)
 
 /* We only provide optimizations if the user selects them and if
    GNU CC is used.  */

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                 |    4 ++++
 sysdeps/x86/bits/string.h |    7 ++++++-
 2 files changed, 10 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]