| ... | @@ -996,7 +996,7 @@ const StackIterator = union(enum) { | ... | @@ -996,7 +996,7 @@ const StackIterator = union(enum) { |
| 996 | /// Value to add to the stack pointer and frame/base pointers to get the real location being | 996 | /// Value to add to the stack pointer and frame/base pointers to get the real location being |
| 997 | /// pointed to. Yes, SPARC really does this. | 997 | /// pointed to. Yes, SPARC really does this. |
| 998 | const stack_bias = bias: { | 998 | const stack_bias = bias: { |
| 999 | if (native_arch.isSPARC()) break :bias 2047; | 999 | if (native_arch == .sparc64) break :bias 2047; |
| 1000 | break :bias 0; | 1000 | break :bias 0; |
| 1001 | }; | 1001 | }; |
| 1002 | | 1002 | |