[PATCH] D65978: [clang] Fixed x86 cpuid NSC signature
Raphael Isemann via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sat Aug 10 03:13:36 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL368510: [clang] Fixed x86 cpuid NSC signature (authored by teemperor, committed by ).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Changed prior to commit:
https://reviews.llvm.org/D65978?vs=214242&id=214516#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D65978/new/
https://reviews.llvm.org/D65978
Files:
cfe/trunk/lib/Headers/cpuid.h
Index: cfe/trunk/lib/Headers/cpuid.h
===================================================================
--- cfe/trunk/lib/Headers/cpuid.h
+++ cfe/trunk/lib/Headers/cpuid.h
@@ -38,8 +38,8 @@
#define signature_TM2_ecx 0x3638784d
/* NSC: "Geode by NSC" */
#define signature_NSC_ebx 0x646f6547
-#define signature_NSC_edx 0x43534e20
-#define signature_NSC_ecx 0x79622065
+#define signature_NSC_edx 0x79622065
+#define signature_NSC_ecx 0x43534e20
/* NEXGEN: "NexGenDriven" */
#define signature_NEXGEN_ebx 0x4778654e
#define signature_NEXGEN_edx 0x72446e65
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D65978.214516.patch
Type: text/x-patch
Size: 563 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20190810/b0a6a5a1/attachment-0001.bin>
More information about the cfe-commits
mailing list