public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc/vineet/arc-port-latest] x86: Correct bit_cpu_CLFSH [BZ #26208]
@ 2020-07-09 16:33 Vineet Gupta
  0 siblings, 0 replies; only message in thread
From: Vineet Gupta @ 2020-07-09 16:33 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=f8b4630ef673486c2c77bd291a08ef132981e149

commit f8b4630ef673486c2c77bd291a08ef132981e149
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Mon Jul 6 06:38:05 2020 -0700

    x86: Correct bit_cpu_CLFSH [BZ #26208]
    
    bit_cpu_CLFSH should be (1u << 19), not (1u << 20).

Diff:
---
 sysdeps/x86/cpu-features.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysdeps/x86/cpu-features.h b/sysdeps/x86/cpu-features.h
index d66dc206f7..f25df778cc 100644
--- a/sysdeps/x86/cpu-features.h
+++ b/sysdeps/x86/cpu-features.h
@@ -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)


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-07-09 16:33 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-09 16:33 [glibc/vineet/arc-port-latest] x86: Correct bit_cpu_CLFSH [BZ #26208] Vineet Gupta

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).