-
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
remove allow(rustc::potential_query_instability) in rustc_span #99126
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @petrochenkov (or someone else) soon. Please see the contribution instructions for more information. |
@bors try @rust-timer queue |
Awaiting bors try build completion. @rustbot label: +S-waiting-on-perf |
⌛ Trying commit 54d87271cbab4185098220b4e507f02a0c6d6561 with merge 93c95bf7f9600dcae71a4e3e88e33985b80ebed2... |
☀️ Try build successful - checks-actions |
Queued 93c95bf7f9600dcae71a4e3e88e33985b80ebed2 with parent 9fb32dc, future comparison URL. |
Finished benchmarking commit (93c95bf7f9600dcae71a4e3e88e33985b80ebed2): comparison url. Instruction count
Max RSS (memory usage)Results
CyclesResults
If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. Benchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. While you can manually mark this PR as fit for rollup, we strongly recommend not doing so since this PR may lead to changes in compiler perf. Next Steps: If you can justify the regressions found in this try perf run, please indicate this with @bors rollup=never Footnotes |
It appears that in all these cases it's better to keep Also it's probably move |
Yeah, makes sense. I'll move it to reduce the scope. |
@NiklasJonsson r=me after doing that and squashing commits into one. |
Didn't know you could put attributes directly on statements. Useful!
Not sure what r=me means, is it a rustbot command? |
418a485
to
f94484f
Compare
@rustbot label -S-waiting-on-author +S-waiting-on-review |
Thanks! |
Yes, |
💡 This pull request was already approved, no need to approve it again.
|
@bors r+ |
💡 This pull request was already approved, no need to approve it again.
|
Rollup of 5 pull requests Successful merges: - rust-lang#97720 (Always create elided lifetime parameters for functions) - rust-lang#98315 (Stabilize `core::ffi:c_*` and rexport in `std::ffi`) - rust-lang#98705 (Implement `for<>` lifetime binder for closures) - rust-lang#99126 (remove allow(rustc::potential_query_instability) in rustc_span) - rust-lang#99139 (Give a better error when `x dist` fails for an optional tool) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Rollup of 5 pull requests Successful merges: - rust-lang#97720 (Always create elided lifetime parameters for functions) - rust-lang#98315 (Stabilize `core::ffi:c_*` and rexport in `std::ffi`) - rust-lang#98705 (Implement `for<>` lifetime binder for closures) - rust-lang#99126 (remove allow(rustc::potential_query_instability) in rustc_span) - rust-lang#99139 (Give a better error when `x dist` fails for an optional tool) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Also, avoid sorting before debug output as iteration order can now be
relied upon.
Related #84447