We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27068cb commit e25738fCopy full SHA for e25738f
compiler/rustc_mir/src/transform/early_otherwise_branch.rs
@@ -29,7 +29,7 @@ pub struct EarlyOtherwiseBranch;
29
30
impl<'tcx> MirPass<'tcx> for EarlyOtherwiseBranch {
31
fn run_pass(&self, tcx: TyCtxt<'tcx>, source: MirSource<'tcx>, body: &mut Body<'tcx>) {
32
- if tcx.sess.opts.debugging_opts.mir_opt_level < 3 {
+ if tcx.sess.opts.debugging_opts.mir_opt_level < 1 {
33
return;
34
}
35
trace!("running EarlyOtherwiseBranch on {:?}", source);
0 commit comments