mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 02:31:26 +00:00
Fix recognition of Intel CPUs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25750 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c2fad16155
commit
7617717496
@ -72,6 +72,8 @@ static const char *GetCurrentX86CPU() {
|
||||
GetCpuIDAndInfo(0x80000003, text+4, text+5, text+6, text+7);
|
||||
GetCpuIDAndInfo(0x80000004, text+8, text+9, text+10, text+11);
|
||||
char *t = reinterpret_cast<char *>(&text[0]);
|
||||
while (*t == ' ')
|
||||
t++;
|
||||
|
||||
if (memcmp(t, "Intel", 5) == 0) {
|
||||
switch (Family) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user