Skip to content

Commit 7dec440

Browse files
committed
1 parent 87d262a commit 7dec440

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

compiler/rustc_middle/src/mir/terminator/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ pub enum TerminatorKind<'tcx> {
9696
/// P <- V
9797
/// }
9898
/// ```
99+
///
100+
/// Note that DropAndReplace is eliminated as part of the `ElaborateDrops` pass.
99101
DropAndReplace {
100102
place: Place<'tcx>,
101103
value: Operand<'tcx>,

compiler/rustc_mir/src/transform/remove_unneeded_drops.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ impl<'tcx> MirPass<'tcx> for RemoveUnneededDrops {
3838
impl<'a, 'tcx> Visitor<'tcx> for RemoveUnneededDropsOptimizationFinder<'a, 'tcx> {
3939
fn visit_terminator(&mut self, terminator: &Terminator<'tcx>, location: Location) {
4040
match terminator.kind {
41-
TerminatorKind::Drop { place, target, .. }
42-
| TerminatorKind::DropAndReplace { place, target, .. } => {
41+
TerminatorKind::Drop { place, target, .. } => {
4342
let ty = place.ty(self.body, self.tcx);
4443
let needs_drop = ty.ty.needs_drop(self.tcx, self.tcx.param_env(self.def_id));
4544
if !needs_drop {

0 commit comments

Comments
 (0)