File tree 2 files changed +3
-2
lines changed
rustc_middle/src/mir/terminator
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -96,6 +96,8 @@ pub enum TerminatorKind<'tcx> {
96
96
/// P <- V
97
97
/// }
98
98
/// ```
99
+ ///
100
+ /// Note that DropAndReplace is eliminated as part of the `ElaborateDrops` pass.
99
101
DropAndReplace {
100
102
place : Place < ' tcx > ,
101
103
value : Operand < ' tcx > ,
Original file line number Diff line number Diff line change @@ -38,8 +38,7 @@ impl<'tcx> MirPass<'tcx> for RemoveUnneededDrops {
38
38
impl < ' a , ' tcx > Visitor < ' tcx > for RemoveUnneededDropsOptimizationFinder < ' a , ' tcx > {
39
39
fn visit_terminator ( & mut self , terminator : & Terminator < ' tcx > , location : Location ) {
40
40
match terminator. kind {
41
- TerminatorKind :: Drop { place, target, .. }
42
- | TerminatorKind :: DropAndReplace { place, target, .. } => {
41
+ TerminatorKind :: Drop { place, target, .. } => {
43
42
let ty = place. ty ( self . body , self . tcx ) ;
44
43
let needs_drop = ty. ty . needs_drop ( self . tcx , self . tcx . param_env ( self . def_id ) ) ;
45
44
if !needs_drop {
You can’t perform that action at this time.
0 commit comments