-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Mir borrowck as query #44009
Mir borrowck as query #44009
Conversation
r? @arielb1 (rust_highfive has picked a reviewer for you, use r? to override) |
@@ -923,6 +923,8 @@ define_maps! { <'tcx> | |||
[] coherent_trait: coherent_trait_dep_node((CrateNum, DefId)) -> (), | |||
|
|||
[] borrowck: BorrowCheck(DefId) -> (), | |||
// FIXME: shouldn't this return a `Result<(), BorrowckErrors>` instead? |
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.
We'll figure out the borrowck error story.
@bors r+ |
📌 Commit c9597ff has been approved by |
☔ The latest upstream changes (presumably #43986) made this pull request unmergeable. Please resolve the merge conflicts. |
(A followup commit removes the mir::transform based entry point.)
c9597ff
to
d92c953
Compare
@bors r=arielb1 |
📌 Commit d92c953 has been approved by |
@bors cancel |
d92c953
to
224c6ca
Compare
@bors r=arielb1 |
📌 Commit 224c6ca has been approved by |
⌛ Testing commit 224c6ca with merge c326ad220ae5712937c8ee8085a074ebe1ff3fe0... |
💔 Test failed - status-travis |
@bors retry Build canceled without any reason. |
Mir borrowck as query Turn the `mir-borrowck` pass (aka "transform") into a query. (If I had realized how relatively easy this was going to be, I would have made it part of #43108. `let hindsight = 20/20;`)
☀️ Test successful - status-appveyor, status-travis |
Fix logic error in test guarding prototype MIR borrowck code. Fix logic error in test guarding prototype MIR borrowck code. tl;dr: 🤦 (This crept in during the shift from a transform to a query (#44009); I didn't notice because my muscle memory was still always passing `-Z mir-borrowck`, while my test cases *also* had the `#[rustc_mir_borrowck]` attribute attached to them.)
Turn the
mir-borrowck
pass (aka "transform") into a query.(If I had realized how relatively easy this was going to be, I would have made it part of #43108.
let hindsight = 20/20;
)