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.24-81-ga6f20b6


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  a6f20b6763c972c05c497c6028d412d6d1717971 (commit)
      from  4482ff226e4b286ab171f3c5841ae1f7e61780cd (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=a6f20b6763c972c05c497c6028d412d6d1717971

commit a6f20b6763c972c05c497c6028d412d6d1717971
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Fri Aug 19 13:32:21 2016 -0700

    X86: Change bit_YMM_state to (1 << 2)
    
    All other state bits, except for bit_YMM_state, are defined as (1 << N).
    This patch changes bit_YMM_state from (2 << 1) to (1 << 2).
    
    	* sysdeps/x86/cpu-features.h (bit_YMM_state): Set to (1 << 2).

diff --git a/ChangeLog b/ChangeLog
index 0b4b5c0..64c4701 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-08-19  H.J. Lu  <hongjiu.lu@intel.com>
+
+	* sysdeps/x86/cpu-features.h (bit_YMM_state): Set to (1 << 2).
+
 2016-08-19  Paul E. Murphy  <murphyp@linux.vnet.ibm.com>
 
 	* sysdeps/ieee754/ldbl-128/gamma_productl.c:
diff --git a/sysdeps/x86/cpu-features.h b/sysdeps/x86/cpu-features.h
index 97ffe76..e891036 100644
--- a/sysdeps/x86/cpu-features.h
+++ b/sysdeps/x86/cpu-features.h
@@ -63,7 +63,7 @@
 
 /* XCR0 Feature flags.  */
 #define bit_XMM_state		(1 << 1)
-#define bit_YMM_state		(2 << 1)
+#define bit_YMM_state		(1 << 2)
 #define bit_Opmask_state	(1 << 5)
 #define bit_ZMM0_15_state	(1 << 6)
 #define bit_ZMM16_31_state	(1 << 7)

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

Summary of changes:
 ChangeLog                  |    4 ++++
 sysdeps/x86/cpu-features.h |    2 +-
 2 files changed, 5 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]