We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 442f997 commit 3eabea9Copy full SHA for 3eabea9
compiler/rustc_mir_transform/src/lib.rs
@@ -524,11 +524,8 @@ fn run_runtime_lowering_passes<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
524
525
/// Returns the sequence of passes that do the initial cleanup of runtime MIR.
526
fn run_runtime_cleanup_passes<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
527
- let passes: &[&dyn MirPass<'tcx>] = &[
528
- &elaborate_box_derefs::ElaborateBoxDerefs,
529
- &lower_intrinsics::LowerIntrinsics,
530
- &simplify::SimplifyCfg::new("elaborate-drops"),
531
- ];
+ let passes: &[&dyn MirPass<'tcx>] =
+ &[&lower_intrinsics::LowerIntrinsics, &simplify::SimplifyCfg::new("elaborate-drops")];
532
533
pm::run_passes(tcx, body, passes, Some(MirPhase::Runtime(RuntimePhase::PostCleanup)));
534
}
0 commit comments