Remove OnlyPropagateInto.

This commit is contained in:
Camille GILLOT 2023-03-07 15:04:53 +00:00
parent 24dbf9c112
commit 9928d0e566
3 changed files with 13 additions and 34 deletions

View file

@ -530,7 +530,7 @@ impl<'tcx> Visitor<'tcx> for ConstPropagator<'_, 'tcx> {
place.local
);
}
ConstPropMode::OnlyPropagateInto | ConstPropMode::NoPropagation => {
ConstPropMode::NoPropagation => {
trace!("can't propagate into {:?}", place);
if place.local != RETURN_PLACE {
Self::remove_const(&mut self.ecx, place.local);
@ -567,7 +567,7 @@ impl<'tcx> Visitor<'tcx> for ConstPropagator<'_, 'tcx> {
Self::remove_const(&mut self.ecx, place.local);
}
}
ConstPropMode::OnlyPropagateInto | ConstPropMode::NoPropagation => {
ConstPropMode::NoPropagation => {
Self::remove_const(&mut self.ecx, place.local);
}
}