authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-10-20 03:44:10+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-10-23 19:34:02+02:00
loga689c3819777c7ebbf00f752951a9a69c7a44c8e
tree2795c17906ce10e98cd7d6fa295355fc151b9dc1
parentd99cf5061c205a57a721a5c6e751158803ed04b8
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.debug: FP unwinding is impossible on alpha, microblaze, sh


1 files changed, 5 insertions(+), 0 deletions(-)

lib/std/debug.zig+5
......@@ -872,13 +872,18 @@ const StackIterator = union(enum) {
872872 };
873873
874874 const fp_usability: FpUsability = switch (builtin.target.cpu.arch) {
875 .alpha,
875876 .avr,
876877 .csky,
878 .microblaze,
879 .microblazeel,
877880 .mips,
878881 .mipsel,
879882 .mips64,
880883 .mips64el,
881884 .msp430,
885 .sh,
886 .sheb,
882887 .xcore,
883888 => .useless,
884889 .hexagon,