std.debug: FP unwinding is impossible on alpha, microblaze, sh
1 files changed, 5 insertions(+), 0 deletions(-)
lib
std
lib/std/debug.zig+5
| ... | ... | @@ -872,13 +872,18 @@ const StackIterator = union(enum) { |
| 872 | 872 | }; |
| 873 | 873 | |
| 874 | 874 | const fp_usability: FpUsability = switch (builtin.target.cpu.arch) { |
| 875 | .alpha, |
| 875 | 876 | .avr, |
| 876 | 877 | .csky, |
| 878 | .microblaze, |
| 879 | .microblazeel, |
| 877 | 880 | .mips, |
| 878 | 881 | .mipsel, |
| 879 | 882 | .mips64, |
| 880 | 883 | .mips64el, |
| 881 | 884 | .msp430, |
| 885 | .sh, |
| 886 | .sheb, |
| 882 | 887 | .xcore, |
| 883 | 888 | => .useless, |
| 884 | 889 | .hexagon, |