1
Fork 0

Bump all mir_opt_level 2 to 3

This commit is contained in:
Santiago Pastorino 2021-03-03 18:56:00 -03:00
parent f3b8920d4b
commit 782c7b04cf
No known key found for this signature in database
GPG key ID: 8131A24E0C79EFAF
5 changed files with 7 additions and 7 deletions

View file

@ -52,7 +52,7 @@ crate fn is_enabled(tcx: TyCtxt<'_>) -> bool {
return enabled;
}
tcx.sess.mir_opt_level() >= 2
tcx.sess.mir_opt_level() >= 3
}
impl<'tcx> MirPass<'tcx> for Inline {