Skip to content

Commit 9243aee

Browse files
authored
Rollup merge of #128851 - compiler-errors:validate-mir-opt-mir, r=matthiaskrgr
Add comment that bors did not see pushed before it merged In #128612, bors merged 470ada2 instead of 1e07c19. This means it dropped a useful comment I added, and a stage rename that is more descriptive.
2 parents 58c6497 + 524e768 commit 9243aee

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

compiler/rustc_interface/src/passes.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -818,8 +818,14 @@ fn run_required_analyses(tcx: TyCtxt<'_>) {
818818
});
819819
sess.time("layout_testing", || layout_test::test_layout(tcx));
820820
sess.time("abi_testing", || abi_test::test_abi(tcx));
821+
822+
// If `-Zvalidate-mir` is set, we also want to compute the final MIR for each item
823+
// (either its `mir_for_ctfe` or `optimized_mir`) since that helps uncover any bugs
824+
// in MIR optimizations that may only be reachable through codegen, or other codepaths
825+
// that requires the optimized/ctfe MIR, such as polymorphization, coroutine bodies,
826+
// or evaluating consts.
821827
if tcx.sess.opts.unstable_opts.validate_mir {
822-
sess.time("ensuring_optimized_MIR_is_computable", || {
828+
sess.time("ensuring_final_MIR_is_computable", || {
823829
tcx.hir().par_body_owners(|def_id| {
824830
tcx.instance_mir(ty::InstanceKind::Item(def_id.into()));
825831
});

0 commit comments

Comments
 (0)