Skip to content

Commit 9e3d465

Browse files
authored
[X86] Update Model value for Arrow Lake. (#113273)
Ref.: https://cdrdv2.intel.com/v1/dl/getContent/671368
1 parent d005be3 commit 9e3d465

File tree

2 files changed

+4
-0
lines changed
  • compiler-rt/lib/builtins/cpu_model
  • llvm/lib/TargetParser

2 files changed

+4
-0
lines changed

compiler-rt/lib/builtins/cpu_model/x86.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,8 @@ static const char *getIntelProcessorTypeAndSubtype(unsigned Family,
475475

476476
// Arrowlake:
477477
case 0xc5:
478+
// Arrowlake U:
479+
case 0xb5:
478480
CPU = "arrowlake";
479481
*Type = INTEL_COREI7;
480482
*Subtype = INTEL_COREI7_ARROWLAKE;

llvm/lib/TargetParser/Host.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -820,6 +820,8 @@ static StringRef getIntelProcessorTypeAndSubtype(unsigned Family,
820820

821821
// Arrowlake:
822822
case 0xc5:
823+
// Arrowlake U:
824+
case 0xb5:
823825
CPU = "arrowlake";
824826
*Type = X86::INTEL_COREI7;
825827
*Subtype = X86::INTEL_COREI7_ARROWLAKE;

0 commit comments

Comments
 (0)