mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
std.debug: FP unwinding is impossible on alpha, microblaze, sh
This commit is contained in:
parent
d99cf5061c
commit
a689c38197
@ -872,13 +872,18 @@ const StackIterator = union(enum) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const fp_usability: FpUsability = switch (builtin.target.cpu.arch) {
|
const fp_usability: FpUsability = switch (builtin.target.cpu.arch) {
|
||||||
|
.alpha,
|
||||||
.avr,
|
.avr,
|
||||||
.csky,
|
.csky,
|
||||||
|
.microblaze,
|
||||||
|
.microblazeel,
|
||||||
.mips,
|
.mips,
|
||||||
.mipsel,
|
.mipsel,
|
||||||
.mips64,
|
.mips64,
|
||||||
.mips64el,
|
.mips64el,
|
||||||
.msp430,
|
.msp430,
|
||||||
|
.sh,
|
||||||
|
.sheb,
|
||||||
.xcore,
|
.xcore,
|
||||||
=> .useless,
|
=> .useless,
|
||||||
.hexagon,
|
.hexagon,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user