[clang] [compiler-rt] [llvm] [X86] Add support for Wildcat Lake (PR #163214)

Phoebe Wang via cfe-commits cfe-commits at lists.llvm.org
Tue Oct 14 07:20:44 PDT 2025


================
@@ -964,6 +964,13 @@ static StringRef getIntelProcessorTypeAndSubtype(unsigned Family,
       *Subtype = X86::INTEL_COREI7_PANTHERLAKE;
       break;
 
+    // Wildcatlake:
+    case 0xd5:
+      CPU = "wildcatlake";
+      *Type = X86::INTEL_COREI7;
+      *Subtype = X86::INTEL_COREI7_WILDCATLAKE;
----------------
phoebewang wrote:

INTEL_COREI7_PANTHERLAKE

https://github.com/llvm/llvm-project/pull/163214


More information about the cfe-commits mailing list