Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ziglang/zig
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 15c4ba18ea19d20815e3cf08b0a813956d65ea75
Choose a base ref
..
head repository: ziglang/zig
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6a4f939531960fdfe182f50156bc858949a423d7
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 lib/std/zig/system/x86.zig
4 changes: 2 additions & 2 deletions lib/std/zig/system/x86.zig
Original file line number Diff line number Diff line change
@@ -201,7 +201,7 @@ fn detectIntelProcessor(cpu: *Target.Cpu, family: u32, model: u32, brand_id: u32
cpu.model = &Target.x86.cpu.meteorlake;
return;
},
0xc5 => {
0xc5, 0xb5 => {
cpu.model = &Target.x86.cpu.arrowlake;
return;
},
@@ -310,7 +310,7 @@ fn detectAMDProcessor(features: Target.Cpu.Feature.Set, family: u32, model: u32)
&Target.x86.cpu.k8_sse3
else
&Target.x86.cpu.k8,
16 => &Target.x86.cpu.amdfam10,
16, 18 => &Target.x86.cpu.amdfam10,
20 => &Target.x86.cpu.btver1,
21 => switch (model) {
0x60...0x7f => &Target.x86.cpu.bdver4,