zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 2eca0e42e59fafae839b507148e8a3679d172079 (tree)
parent 1f8a72175b5352e77b41ed4d165acccad08ffb16
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Thu, 16 Oct 2025 13:50:39 +0200

std.debug: FP-based unwinding is impossible on avr, csky, msp430, and xcore

The ABIs do not define a frame pointer register, nor do they define a guaranteed
and fixed area on the stack where one might find saved registers such as a frame
pointer or return address.

Diffstat:
Mlib/std/debug.zig | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/lib/std/debug.zig b/lib/std/debug.zig @@ -872,10 +872,14 @@ const StackIterator = union(enum) { }; const fp_usability: FpUsability = switch (builtin.target.cpu.arch) { + .avr, + .csky, .mips, .mipsel, .mips64, .mips64el, + .msp430, + .xcore, => .useless, .hexagon, // The PowerPC ABIs don't actually strictly require a backchain pointer; they allow omitting