| author | |
| committer | |
| log | f6403ed5ea05bcdbb55da15ee65204b1c8cdf423 |
| tree | d1f5da7b54ead2ea46c538abb51567a0a47a9fd9 |
| parent | feba8a83a7c4eda738ebcf619c33ade8d0dfbfa7 |
| signature |
It's free real estate, as it turns out.2 files changed, 2 insertions(+), 2 deletions(-)
lib/std/debug/Dwarf.zig+1-1| ... | ... | @@ -1434,7 +1434,7 @@ pub fn ipRegNum(arch: std.Target.Cpu.Arch) ?u16 { |
| 1434 | 1434 | .hexagon => 76, |
| 1435 | 1435 | .loongarch32, .loongarch64 => 64, |
| 1436 | 1436 | .mips, .mipsel, .mips64, .mips64el => 37, |
| 1437 | .powerpc, .powerpcle, .powerpc64, .powerpc64le => 357, | |
| 1437 | .powerpc, .powerpcle, .powerpc64, .powerpc64le => 67, | |
| 1438 | 1438 | .riscv32, .riscv32be, .riscv64, .riscv64be => 65, |
| 1439 | 1439 | .s390x => 65, |
| 1440 | 1440 | .x86 => 8, |
lib/std/debug/cpu_context.zig+1-1| ... | ... | @@ -918,7 +918,7 @@ pub const Powerpc = extern struct { |
| 918 | 918 | switch (register_num) { |
| 919 | 919 | 0...31 => return @ptrCast(&ctx.r[register_num]), |
| 920 | 920 | 65 => return @ptrCast(&ctx.lr), |
| 921 | 357 => return @ptrCast(&ctx.pc), | |
| 921 | 67 => return @ptrCast(&ctx.pc), | |
| 922 | 922 | |
| 923 | 923 | else => return error.InvalidRegister, |
| 924 | 924 | } |