-
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
Revert rust-lang/rust#46833 on stable #48378
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you make the same change for the beta PR?
src/test/run-pass/abort-on-c-abi.rs
Outdated
@@ -12,6 +12,7 @@ | |||
// we never unwind through them. | |||
|
|||
// ignore-emscripten no processes | |||
// ignore FIXME rust-lang/rust#48251 -- temporarily disabled |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This syntax appears to not be supported; we have to use // ignore-test
instead I think...
ca0c262
to
9904c17
Compare
@Mark-Simulacrum done |
src/librustc_mir/build/mod.rs
Outdated
@@ -372,7 +372,9 @@ fn should_abort_on_panic<'a, 'gcx, 'tcx>(tcx: TyCtxt<'a, 'gcx, 'tcx>, | |||
// unwind anyway. Don't stop them. | |||
if tcx.has_attr(tcx.hir.local_def_id(fn_id), "unwind") { return false; } | |||
|
|||
return true; | |||
// FIXME(rust-lang/rust#48251) -- Had to disable abort-on-panic | |||
// for backwardsa compatibility reasons. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo, not a big deal :)
backwardsa
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are you KIDDING? That is the biggest of deals.
Team member @nikomatsakis has proposed to merge this. The next step is review by the rest of the tagged teams:
No concerns currently listed. Once a majority of reviewers approve (and none object), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up! See this document for info about what commands tagged team members can give me. |
🔔 This is now entering its final comment period, as per the review above. 🔔 |
@rfcbot reviewed |
9904c17
to
05a4fca
Compare
Closing in favor of #48445. |
[beta] temporarily disable #46833 due to #48251 see also #48378 r? @Mark-Simulacrum
This is a minimal diff to disable #46833 on stable (due to #48251). I have a more expansive diff for master that allows us to opt back in.
r? @Mark-Simulacrum