File tree 1 file changed +7
-1
lines changed 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -1466,6 +1466,8 @@ StringRef sys::getHostCPUName() {
1466
1466
#define CPUFAMILY_ARM_VORTEX_TEMPEST 0x07d34b9f
1467
1467
#define CPUFAMILY_ARM_LIGHTNING_THUNDER 0x462504d2
1468
1468
#define CPUFAMILY_ARM_FIRESTORM_ICESTORM 0x1b588bb3
1469
+ #define CPUFAMILY_ARM_BLIZZARD_AVALANCHE 0xda33d83d
1470
+ #define CPUFAMILY_ARM_EVEREST_SAWTOOTH 0x8765edea
1469
1471
1470
1472
StringRef sys::getHostCPUName () {
1471
1473
uint32_t Family;
@@ -1491,9 +1493,13 @@ StringRef sys::getHostCPUName() {
1491
1493
return " apple-a13" ;
1492
1494
case CPUFAMILY_ARM_FIRESTORM_ICESTORM:
1493
1495
return " apple-m1" ;
1496
+ case CPUFAMILY_ARM_BLIZZARD_AVALANCHE:
1497
+ return " apple-m2" ;
1498
+ case CPUFAMILY_ARM_EVEREST_SAWTOOTH:
1499
+ return " apple-m3" ;
1494
1500
default :
1495
1501
// Default to the newest CPU we know about.
1496
- return " apple-m1 " ;
1502
+ return " apple-m3 " ;
1497
1503
}
1498
1504
}
1499
1505
#elif defined(_AIX)
You can’t perform that action at this time.
0 commit comments