[X86] Add getHostCPUName support for the Gemini Lake model number which also uses Goldmont.

llvm-svn: 318271
This commit is contained in:
Craig Topper 2017-11-15 06:02:43 +00:00
parent 0749186a70
commit 0dadfe30d2
1 changed files with 3 additions and 2 deletions

View File

@ -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: