mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-24 02:03:35 +08:00
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).
This commit is contained in:
parent
4482ff226e
commit
a6f20b6763
@ -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:
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user