Uh oh!
There was an error while loading. Please reload this page.
Don't normalize higher-ranked assumptions if they're not used - #147299
Conversation
rustbot
commented
Oct 3, 2025
r? @fee1-dead rustbot has assigned @fee1-dead. Use |
jackh726
commented
Oct 3, 2025
@bors r+ rollup=never |
bors
commented
Oct 3, 2025
bors
commented
Oct 4, 2025
bors
commented
Oct 4, 2025
☀️ Test successful - checks-actions |
What is this?This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.Comparing 595b9a4 (parent) -> 7950f24 (this PR) Test differencesShow 16 test diffsStage 1
Stage 2
Additionally, 8 doctest diffs were found. These are ignored, as they are noisy. Job group index
Test dashboardRun cargo run --manifest-path src/ci/citool/Cargo.toml -- \
test-dashboard 7950f244e7ef55b61a83d12f4662be643cd182d6 --output-dir test-dashboardAnd then open Job duration changes
How to interpret the job duration changes?Job durations can vary a lot, based on the actual runner instance |
rust-timer
commented
Oct 4, 2025
Finished benchmarking commit (7950f24): comparison URL. Overall result: ✅ improvements - no action needed@rustbot label: -perf-regression Instruction countOur most reliable metric. Used to determine the overall result above. However, even this metric can be noisy.
Max RSS (memory usage)Results (secondary -1.0%)A less reliable metric. May be of interest, but not used to determine the overall result above.
CyclesResults (primary -2.4%, secondary 1.8%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 470.682s -> 473.406s (0.58%) |
apiraino
commented
Oct 9, 2025
Beta and stable backport accepted as per compiler team on Zulip. A backport PR will be authored by the release team at the end of the current development cycle. Backport labels handled by them. Stable backport approved as well provided there are plans for a dot release, this alone does not warrant one. @rustbot label +beta-accepted +stable-accepted |
[beta] backports - Don't normalize higher-ranked assumptions if they're not used #147299 - Fix target list of `link_section` #147418 - bootstrap: add `Builder::rustc_cmd` that includes the lib path #147419 - Update LLVM to 21.1.2 #146953 - Remove the temporary directory when a check ends -- part of #147518 r? cuviper
emilyalbini
commented
Nov 5, 2025
Removing stable labels as 1.90.1 is not going to happen, and this was backported to 1.91.0. |
See the comment in the code.
Normalizing these assumptions may cause us to register things like new placeholder outlives obligations that cause higher-ranked lifetime errors, and this is problematic if we're not even using these assumptions in borrowck.
Fixes#147244
Fixes#147285