-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
rustc_mir: promote references of statics from other statics. #46524
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
@@ -633,7 +633,14 @@ impl<'a, 'tcx> Visitor<'tcx> for Qualifier<'a, 'tcx, 'tcx> { | |||
|
|||
// We might have a candidate for promotion. | |||
let candidate = Candidate::Ref(location); | |||
if !self.qualif.intersects(Qualif::NEVER_PROMOTE) { | |||
let mut unpromotable = self.qualif & Qualif::NEVER_PROMOTE; |
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.
nit: I would prefer that this codepath be shared with the shuffle index code into a fn can_promote
r=me with nit fixed |
if !self.qualif.intersects(Qualif::NEVER_PROMOTE) { | ||
let mut unpromotable = self.qualif & Qualif::NEVER_PROMOTE; | ||
|
||
// References to statics are allowed, but only in other statics. |
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.
Why only in other statics? Couldn't references to statics always be promoted
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.
It's just what we already allow. Must avoid letting in more until miri is in use.
@arielb1 The Travis failure suggests MIR borrowck doesn't handle this yet. Does it need your PR? |
Maybe. I don't remember the state of MIR borrowck before this PR. I suppose we can wait - this doesn't block me. |
Marking as blocked by #46268. |
@bors r=arielb1 |
📌 Commit 292c6ac has been approved by |
rustc_mir: promote references of statics from other statics. Fixes #46522 by also allowing `STATIC_REF` in MIR const-qualification, not just AST rvalue promotion.
☀️ Test successful - status-appveyor, status-travis |
Fixes #46522 by also allowing
STATIC_REF
in MIR const-qualification, not just AST rvalue promotion.