mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-25 20:21:07 +00:00
x86: Correct bit_cpu_CLFLUSHOPT [BZ #26128]
bit_cpu_CLFLUSHOPT should be (1u << 23), not (1u << 22).
This commit is contained in:
parent
b637306d3e
commit
b7c9bb183b
@ -465,7 +465,7 @@ extern const struct cpu_features *__get_cpu_features (void)
|
||||
#define bit_cpu_ADX (1u << 19)
|
||||
#define bit_cpu_SMAP (1u << 20)
|
||||
#define bit_cpu_AVX512_IFMA (1u << 21)
|
||||
#define bit_cpu_CLFLUSHOPT (1u << 22)
|
||||
#define bit_cpu_CLFLUSHOPT (1u << 23)
|
||||
#define bit_cpu_CLWB (1u << 24)
|
||||
#define bit_cpu_TRACE (1u << 25)
|
||||
#define bit_cpu_AVX512PF (1u << 26)
|
||||
|
Loading…
Reference in New Issue
Block a user