forked from OSchip/llvm-project
[X86] Add getHostCPUName support for the Gemini Lake model number which also uses Goldmont.
llvm-svn: 318271
This commit is contained in:
parent
0749186a70
commit
0dadfe30d2
|
@ -661,8 +661,9 @@ getIntelProcessorTypeAndSubtype(unsigned Family, unsigned Model,
|
|||
*Type = X86::INTEL_SILVERMONT;
|
||||
break; // "silvermont"
|
||||
// Goldmont:
|
||||
case 0x5c:
|
||||
case 0x5f:
|
||||
case 0x5c: // Apollo Lake
|
||||
case 0x5f: // Denverton
|
||||
case 0x7a: // Gemini Lake
|
||||
*Type = X86::INTEL_GOLDMONT;
|
||||
break; // "goldmont"
|
||||
case 0x57:
|
||||
|
|
Loading…
Reference in New Issue