large_enums mir pass: fix is_enabled logic#154375
large_enums mir pass: fix is_enabled logic#154375rust-bors[bot] merged 1 commit intorust-lang:mainfrom
Conversation
|
Some changes occurred to MIR optimizations cc @rust-lang/wg-mir-opt |
|
r? @mati865 rustbot has assigned @mati865. Use Why was this reviewer chosen?The reviewer was selected based on:
|
|
@bors r+ rollup |
large_enums mir pass: fix is_enabled logic This logic got turned from a guard in `run_pass` to an `is_enabled` check in rust-lang@15d4728#r2989096960, but that was done incorrectly. The pass must never be enabled without `unsound_mir_opts`!
|
@bors r- |
|
This pull request was unapproved. This PR was contained in a rollup (#154411), which was unapproved. |
This comment has been minimized.
This comment has been minimized.
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 3a933e5 (parent) -> f58bd5c (this PR) Test differencesShow 2 test diffs2 doctest diffs were found. These are ignored, as they are noisy. Test dashboardRun cargo run --manifest-path src/ci/citool/Cargo.toml -- \
test-dashboard f58bd5cee4ce4a97b03146fa94fc9ba68ddd5f64 --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 |
|
Finished benchmarking commit (f58bd5c): comparison URL. Overall result: ❌ regressions - 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)This benchmark run did not return any relevant results for this metric. CyclesResults (primary -2.3%)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: 484.487s -> 487.239s (0.57%) |
This logic got turned from a guard in
run_passto anis_enabledcheck in 15d4728#r2989096960, but that was done incorrectly. The pass must never be enabled withoutunsound_mir_opts!