-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix unwinding on certain platforms when debug assertions are enabled #99932
Conversation
This came up on armv7-apple-ios when using -Zbuild-std
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @Mark-Simulacrum (or someone else) soon. Please see the contribution instructions for more information. |
Hey! It looks like you've submitted a new PR for the library teams! If this PR contains changes to any Examples of
|
r? @Amanieu |
LGTM: @bors r+ |
…askrgr Rollup of 7 pull requests Successful merges: - rust-lang#99519 (Remove implicit names and values from `--cfg` in `--check-cfg`) - rust-lang#99620 (`-Z location-detail`: provide option to disable all location details) - rust-lang#99932 (Fix unwinding on certain platforms when debug assertions are enabled) - rust-lang#99973 (Layout things) - rust-lang#99980 (Remove more Clean trait implementations) - rust-lang#99984 (Fix compat.rs for `cfg(miri)`) - rust-lang#99986 (Add wrap suggestions for record variants) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
This came up on
armv7-apple-ios
when using-Zbuild-std
.Looks like this is a leftover from a conversion from C to Rust, where integer wrapping is implicit.
Not at all sure how the unwinding code works!