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-558-gede0236


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  ede0236c867a28aaed941e7acac9b0a8d89c5acb (commit)
      from  e0da28a1b2ff9112f4aee4cebd4b22fce1ae62ac (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=ede0236c867a28aaed941e7acac9b0a8d89c5acb

commit ede0236c867a28aaed941e7acac9b0a8d89c5acb
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Fri Jan 23 17:27:09 2015 -0800

    Treat model numbers 0x4a/0x4d as Silvermont
    
    	* sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
    	Treat model numbers 0x4a/0x4d as Intel Silvermont architecture.

diff --git a/ChangeLog b/ChangeLog
index 306341c..c199a5d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2015-01-23  H.J. Lu  <hongjiu.lu@intel.com>
 
+	* sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
+	Treat model numbers 0x4a/0x4d as Intel Silvermont architecture.
+
+2015-01-23  H.J. Lu  <hongjiu.lu@intel.com>
+
 	[BZ #17870]
 	* nptl/sem_post.c (__new_sem_post): Replace unsigned long int
 	with uint64_t.
diff --git a/sysdeps/x86_64/multiarch/init-arch.c b/sysdeps/x86_64/multiarch/init-arch.c
index 47b9655..ec71918 100644
--- a/sysdeps/x86_64/multiarch/init-arch.c
+++ b/sysdeps/x86_64/multiarch/init-arch.c
@@ -79,6 +79,8 @@ __init_cpu_features (void)
 	      break;
 
 	    case 0x37:
+	    case 0x4a:
+	    case 0x4d:
 	      /* Unaligned load versions are faster than SSSE3
 		 on Silvermont.  */
 #if index_Fast_Unaligned_Load != index_Prefer_PMINUB_for_stringop

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

Summary of changes:
 ChangeLog                            |    5 +++++
 sysdeps/x86_64/multiarch/init-arch.c |    2 ++
 2 files changed, 7 insertions(+), 0 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]