-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Don't re-elaborated already elaborated caller bounds in method probe #128559
Conversation
@bors try @rust-timer queue |
This comment has been minimized.
This comment has been minimized.
Don't re-elaborated already elaborated caller bounds in method probe Caller bounds are already elaborated. Only elaborate object candidates' principals. Also removes the only usage of `transitive_bounds`.
☀️ Try build successful - checks-actions |
This comment has been minimized.
This comment has been minimized.
Finished benchmarking commit (5f7c462): comparison URL. Overall result: ✅ improvements - no action neededBenchmarking 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. @bors rollup=never Instruction countThis is a highly reliable metric that was used to determine the overall result at the top of this comment.
Max RSS (memory usage)This benchmark run did not return any relevant results for this metric. CyclesThis benchmark run did not return any relevant results for this metric. Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 759.288s -> 758.561s (-0.10%) |
OK, so there's no perf win (sad!) but I still think this should merge since it simplifies things :) |
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.
👍 r=me after removing an outdated fixme
4623d84
to
34e0878
Compare
@bors r=lcnr rollup=maybe |
…iaskrgr Rollup of 5 pull requests Successful merges: - rust-lang#128385 (rustdoc-json: discard non-local inherent impls for primitives) - rust-lang#128559 (Don't re-elaborated already elaborated caller bounds in method probe) - rust-lang#128631 (handle crates when they are not specified for std docs) - rust-lang#128664 (Add `Debug` impls to API types in `rustc_codegen_ssa`) - rust-lang#128686 (fix the invalid argument type) r? `@ghost` `@rustbot` modify labels: rollup
Rollup merge of rust-lang#128559 - compiler-errors:elaborate, r=lcnr Don't re-elaborated already elaborated caller bounds in method probe Caller bounds are already elaborated. Only elaborate object candidates' principals. Also removes the only usage of `transitive_bounds`.
Caller bounds are already elaborated. Only elaborate object candidates' principals.
Also removes the only usage of
transitive_bounds
.