1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

[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 cd296f22b1
commit 368d3224be

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: