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:
Jeff Cohen 2006-01-28 18:38:20 +00:00
parent c2fad16155
commit 7617717496

View File

@ -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) {