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) {...@@ -872,13 +872,18 @@ const StackIterator = union(enum) {
872 };872 };
873873
874 const fp_usability: FpUsability = switch (builtin.target.cpu.arch) {874 const fp_usability: FpUsability = switch (builtin.target.cpu.arch) {
875 .alpha,
875 .avr,876 .avr,
876 .csky,877 .csky,
878 .microblaze,
879 .microblazeel,
877 .mips,880 .mips,
878 .mipsel,881 .mipsel,
879 .mips64,882 .mips64,
880 .mips64el,883 .mips64el,
881 .msp430,884 .msp430,
885 .sh,
886 .sheb,
882 .xcore,887 .xcore,
883 => .useless,888 => .useless,
884 .hexagon,889 .hexagon,