std: Detect AMD Zen3 CPU family

Easy peasy lemon squeezy.
This commit is contained in:
LemonBoy 2021-03-27 12:33:08 +01:00 committed by Andrew Kelley
parent a4316d5505
commit 75080e351a

View File

@ -311,6 +311,10 @@ fn detectAMDProcessor(cpu: *Target.Cpu, family: u32, model: u32) void {
}
return;
},
25 => {
cpu.model = &Target.x86.cpu.znver3;
return;
},
else => {
return;
},