-
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
rustc: Remove DepGraph
handling from rustc_metadata
#44418
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
@bors p=1 (This feels like it may have performance impact). |
@bors r+ Thanks, Alex! It's way better this way |
📌 Commit 304c8de has been approved by |
@bors p=0 Could not compile rustdoc on PR CI. Please reset the priority to p=1 after that is fixed.
|
304c8de
to
fdbbd58
Compare
@bors: r=michaelwoerister |
📌 Commit fdbbd58 has been approved by |
@bors p=1 |
fdbbd58
to
28e2cd4
Compare
@bors: r=michaelwoerister |
📌 Commit 28e2cd4 has been approved by |
⌛ Testing commit 28e2cd403912e548edf0cfcc1ad28a2fa934c1d7 with merge 9026e62408040fca85697aad1d3c07cd560bd296... |
💔 Test failed - status-travis |
This should now be entirely tracked through queries, so no need to have a `DepGraph` in the `CStore` object any more!
28e2cd4
to
d724d03
Compare
@bors: r=michaelwoerister |
📌 Commit d724d03 has been approved by |
rustc: Remove `DepGraph` handling from rustc_metadata This should now be entirely tracked through queries, so no need to have a `DepGraph` in the `CStore` object any more! cc #44390
☀️ Test successful - status-appveyor, status-travis |
This should now be entirely tracked through queries, so no need to have a
DepGraph
in theCStore
object any more!cc #44390