mirror of
https://github.com/ziglang/zig.git
synced 2026-02-12 20:37:54 +00:00
std: Detect AMD Zen3 CPU family
Easy peasy lemon squeezy.
This commit is contained in:
parent
a4316d5505
commit
75080e351a
@ -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;
|
||||
},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user