rust/library/unwind
Noratrieb f20a6c70fb make _Unwind_Action a type alias, not enum
It's bitflags in practice, so an enum is unsound, as an enum must only
have the described values. The x86_64 psABI declares it as a `typedef
int _Unwind_Action`, which seems reasonable. I made a newtype first but
that was more annoying than just a typedef. We don't really use this
value for much other than a short check.
2025-03-16 21:32:41 +01:00
..
src make _Unwind_Action a type alias, not enum 2025-03-16 21:32:41 +01:00
Cargo.toml Add support for wasm exception handling to Emscripten target 2025-01-06 10:29:54 +01:00