-
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
Fix ICE when passing DefId-creating args to legacy_const_generics. #130443
Conversation
a598998
to
77a3a5e
Compare
@bors try |
…r=<try> Fix ICE when passing DefId-creating args to legacy_const_generics. r? BoxyUwU Fixes rust-lang#123077
This comment has been minimized.
This comment has been minimized.
77a3a5e
to
193df11
Compare
@bors try |
…r=<try> Fix ICE when passing DefId-creating args to legacy_const_generics. r? BoxyUwU Fixes rust-lang#123077 Fixes rust-lang#129150
This comment has been minimized.
This comment has been minimized.
☀️ Try build successful - checks-actions |
@craterbot check |
👌 Experiment ℹ️ Crater is a tool to run experiments across parts of the Rust ecosystem. Learn more |
193df11
to
5c5e12f
Compare
This comment has been minimized.
This comment has been minimized.
5c5e12f
to
300d8f6
Compare
This comment has been minimized.
This comment has been minimized.
300d8f6
to
ee70cbf
Compare
☔ The latest upstream changes (presumably #130674) made this pull request unmergeable. Please resolve the merge conflicts. |
🚧 Experiment ℹ️ Crater is a tool to run experiments across parts of the Rust ecosystem. Learn more |
🎉 Experiment
|
b4bd8fb
to
44fb7f3
Compare
The final comment period, with a disposition to merge, as per the review above, is now complete. As the automated representative of the governance process, I would like to thank the author for their work and everyone else who contributed. This will be merged soon. |
44fb7f3
to
c664250
Compare
These commits modify the If this was unintentional then you should revert the changes before this PR is merged. |
That's from re-adding the pretty printer as a dep in rustc_ast_lowering. |
This comment has been minimized.
This comment has been minimized.
c664250
to
75552b3
Compare
75552b3
to
b462c68
Compare
@bors r+ |
…, r=BoxyUwU Fix ICE when passing DefId-creating args to legacy_const_generics. r? BoxyUwU Fixes rust-lang#123077 Fixes rust-lang#129150
…, r=BoxyUwU Fix ICE when passing DefId-creating args to legacy_const_generics. r? BoxyUwU Fixes rust-lang#123077 Fixes rust-lang#129150
☀️ Test successful - checks-actions |
@@ -9,6 +9,7 @@ doctest = false | |||
[dependencies] | |||
# tidy-alphabetical-start | |||
rustc_ast = { path = "../rustc_ast" } | |||
rustc_ast_pretty = { path = "../rustc_ast_pretty" } |
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.
Was this already a transitive dep, or did this change reduce build parallelism?
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 was a dep through rustc_errors (and it also was a direct dep ~10 days ago: b480f0f)
Finished benchmarking commit (46e8d20): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)Results (primary -2.3%, secondary -3.1%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesResults (secondary -10.3%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 791.497s -> 788.11s (-0.43%) |
r? BoxyUwU
Fixes #123077
Fixes #129150