1
Fork 0

Bump one missing mir_opt_level

This commit is contained in:
Santiago Pastorino 2021-03-04 11:15:49 -03:00
parent 261048f099
commit 004465c620
No known key found for this signature in database
GPG key ID: 8131A24E0C79EFAF

View file

@ -1272,7 +1272,7 @@ impl<'mir, 'tcx> MutVisitor<'tcx> for ConstPropagator<'mir, 'tcx> {
// Every argument in our function calls have already been propagated in `visit_operand`. // Every argument in our function calls have already been propagated in `visit_operand`.
// //
// NOTE: because LLVM codegen gives slight performance regressions with it, so this is // NOTE: because LLVM codegen gives slight performance regressions with it, so this is
// gated on `mir_opt_level=2`. // gated on `mir_opt_level=3`.
TerminatorKind::Call { .. } => {} TerminatorKind::Call { .. } => {}
} }