1
Fork 0

add some comments explaining why MIR opts are marked as unsound

This commit is contained in:
Ralf Jung 2023-10-10 11:17:27 +02:00
parent 2de454637f
commit d805b265db
3 changed files with 5 additions and 1 deletions

View file

@ -34,7 +34,7 @@ pub struct RenameReturnPlace;
impl<'tcx> MirPass<'tcx> for RenameReturnPlace {
fn is_enabled(&self, sess: &rustc_session::Session) -> bool {
// #111005
// unsound: #111005
sess.mir_opt_level() > 0 && sess.opts.unstable_opts.unsound_mir_opts
}