| author | |
| committer | |
| log | 78bc5d46e07f238f7ec90b1ef99001278ccc2174 |
| tree | b03438051126d30e2ee8fb2dc9e26efefbfd7493 |
| parent | ebc0b90eb709b31e66daddfef26f32e36f169fc0 |
| signature |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/debug.zig+1-1| ... | ... | @@ -996,7 +996,7 @@ const StackIterator = union(enum) { |
| 996 | 996 | /// Value to add to the stack pointer and frame/base pointers to get the real location being |
| 997 | 997 | /// pointed to. Yes, SPARC really does this. |
| 998 | 998 | const stack_bias = bias: { |
| 999 | if (native_arch.isSPARC()) break :bias 2047; | |
| 999 | if (native_arch == .sparc64) break :bias 2047; | |
| 1000 | 1000 | break :bias 0; |
| 1001 | 1001 | }; |
| 1002 | 1002 |