-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Remove allow(potential_query_instability)
from borrowck
#108735
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
Conversation
r? @Nilstrieb (rustbot has picked a reviewer for you, use r? to override) |
@bors try @rust-timer queue |
This comment has been minimized.
This comment has been minimized.
⌛ Trying commit 4b312c26b16a5a6c53e3481ea16d3833e89e1bc0 with merge f3bd67df794dd08613dcb4c3bd1c5eb9364dd901... |
☀️ Try build successful - checks-actions |
1 similar comment
☀️ Try build successful - checks-actions |
This comment has been minimized.
This comment has been minimized.
Finished benchmarking commit (f3bd67df794dd08613dcb4c3bd1c5eb9364dd901): comparison URL. Overall result: ❌✅ regressions and improvements - 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. Next Steps: If you can justify the regressions found in this try perf run, please indicate this with @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)ResultsThis 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.
CyclesResultsThis 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.
|
4b312c2
to
fe6bd32
Compare
@bors try @rust-timer queue |
This comment has been minimized.
This comment has been minimized.
⌛ Trying commit fe6bd32b6cde023d5eed374d83cb013483ac36f4 with merge e2fc320fee9b28723be2c4208f2665653e48c3e0... |
fe6bd32
to
3eeb3fd
Compare
i think it's fine to try again after a force push? we'll see, worst case you have to reopen the PR :D |
This comment has been minimized.
This comment has been minimized.
⌛ Trying commit 3eeb3fd with merge cd9ce09752921639ef140ece6de524ce744ff5be... |
☀️ Try build successful - checks-actions |
This comment has been minimized.
This comment has been minimized.
@rust-timer build cd9ce09752921639ef140ece6de524ce744ff5be |
This comment has been minimized.
This comment has been minimized.
i guess it wasnt, too bad |
Finished benchmarking commit (cd9ce09752921639ef140ece6de524ce744ff5be): comparison URL. Overall result: ❌ regressions - 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. Next Steps: If you can justify the regressions found in this try perf run, please indicate this with @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)ResultsThis 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.
CyclesResultsThis 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.
|
@@ -19,7 +19,7 @@ use super::{Locations, TypeChecker}; | |||
|
|||
impl<'a, 'tcx> TypeChecker<'a, 'tcx> { | |||
/// Check explicit closure signature annotation, | |||
/// e.g., `|x: FxHashMap<_, &'static u32>| ...`. | |||
/// e.g., `|x: FxIndexMap<_, &'static u32>| ...`. |
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.
:D
the usual obligation processing noise |
☀️ Test successful - checks-actions |
1 similar comment
☀️ Test successful - checks-actions |
Finished benchmarking commit (8f9e09a): comparison URL. Overall result: ❌✅ regressions and improvements - no action needed@rustbot label: -perf-regression 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)ResultsThis 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.
CyclesResultsThis 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.
|
cc #84447
Replace uses of
FxHash*
withFxIndex*
. One#[allow]
for a HashMap in an external crate but the output is sorted afterwards.