-
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
Update let-expressions.rs with DepNode labels #45148
Conversation
#[rustc_clean(label="MirValidated", cfg="cfail3")] | ||
#[rustc_dirty(label="MirOptimized", cfg="cfail2")] | ||
#[rustc_clean(label="MirOptimized", cfg="cfail3")] | ||
#[rustc_clean(label="TypeckTables", cfg="cfail2")] |
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.
@michaelwoerister isn't it a bit surprising that TypeckTables
is clean here? (Am I correct to interpret clean as green?)
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.
Oh, I guess it's just that the name of the variable doesn't show up in there.
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.
Yes, it is surprising but it's valid, I think.
@bors r+ rollup |
📌 Commit 29b576e has been approved by |
Update let-expressions.rs with DepNode labels As a part of rust-lang#44924, the PR has tests verified for the following dependency nodes for **let-expressions** ``` - MirValidated - MirOptimized - TypeCheckTables - TypeOfItem - GenericsOfItem - PredicatesOfItem - FnSignature ``` As we are more concerned with the function body, the following fingerprints do not change over compilation sessions. ```- TypeOfItem - GenericsOfItem - PredicatesOfItem - FnSignature ``` r? @nikomatsakis cc @michaelwoerister P.S. Will add more tests as and when possible :)
As a part of #44924, the PR has tests verified for the following dependency nodes for let-expressions
As we are more concerned with the function body, the following fingerprints do not change over compilation sessions.
r? @nikomatsakis
cc @michaelwoerister
P.S. Will add more tests as and when possible :)