| ... | ... | @@ -1548,12 +1548,12 @@ pub const Cpu = struct { |
| 1548 | 1548 | pub fn baseline(arch: Arch) *const Model { |
| 1549 | 1549 | return switch (arch) { |
| 1550 | 1550 | .arm, .armeb, .thumb, .thumbeb => &arm.cpu.baseline, |
| 1551 | | .hexagon => &hexagon.cpu.hexagonv60, |
| 1551 | .hexagon => &hexagon.cpu.hexagonv60, // gcc/clang do not have a generic hexagon model. |
| 1552 | 1552 | .riscv32 => &riscv.cpu.baseline_rv32, |
| 1553 | 1553 | .riscv64 => &riscv.cpu.baseline_rv64, |
| 1554 | 1554 | .x86 => &x86.cpu.pentium4, |
| 1555 | 1555 | .nvptx, .nvptx64 => &nvptx.cpu.sm_20, |
| 1556 | | .s390x => &s390x.cpu.arch8, |
| 1556 | .s390x => &s390x.cpu.arch8, // gcc/clang do not have a generic s390x model. |
| 1557 | 1557 | .sparc => &sparc.cpu.v9, // glibc does not work with 'plain' v8. |
| 1558 | 1558 | .loongarch64 => &loongarch.cpu.loongarch64, |
| 1559 | 1559 | |