Merged
Conversation
Contributor
|
r? @arielb1 (rust_highfive has picked a reviewer for you, use r? to override) |
arielb1
reviewed
Aug 21, 2017
src/librustc/ty/maps.rs
Outdated
Contributor
There was a problem hiding this comment.
We'll figure out the borrowck error story.
Contributor
|
@bors r+ |
Collaborator
|
📌 Commit c9597ff has been approved by |
Collaborator
|
☔ 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
Contributor
Author
|
@bors r=arielb1 |
Collaborator
|
📌 Commit d92c953 has been approved by |
Contributor
Author
|
@bors cancel |
d92c953 to
224c6ca
Compare
Contributor
Author
|
@bors r=arielb1 |
Collaborator
|
📌 Commit 224c6ca has been approved by |
Collaborator
|
⌛ Testing commit 224c6ca with merge c326ad220ae5712937c8ee8085a074ebe1ff3fe0... |
Collaborator
|
💔 Test failed - status-travis |
Member
|
@bors retry Build canceled without any reason. |
Collaborator
bors
added a commit
that referenced
this pull request
Aug 21, 2017
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;`)
Collaborator
|
☀️ Test successful - status-appveyor, status-travis |
This was referenced Aug 21, 2017
Merged
bors
added a commit
that referenced
this pull request
Aug 22, 2017
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.)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Turn the
mir-borrowckpass (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;)