mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-24 22:10:13 +00:00
x86: Correct bit_cpu_CLFSH [BZ #26208]
bit_cpu_CLFSH should be (1u << 19), not (1u << 20).
This commit is contained in:
parent
01ffa6002e
commit
f8b4630ef6
@ -277,7 +277,7 @@ extern const struct cpu_features *__get_cpu_features (void)
|
||||
#define bit_cpu_PAT (1u << 16)
|
||||
#define bit_cpu_PSE_36 (1u << 17)
|
||||
#define bit_cpu_PSN (1u << 18)
|
||||
#define bit_cpu_CLFSH (1u << 20)
|
||||
#define bit_cpu_CLFSH (1u << 19)
|
||||
#define bit_cpu_DS (1u << 21)
|
||||
#define bit_cpu_ACPI (1u << 22)
|
||||
#define bit_cpu_MMX (1u << 23)
|
||||
|
Loading…
Reference in New Issue
Block a user