@@ -85,7 +85,6 @@ should go to.
8585use crate :: build:: { BlockAnd , BlockAndExtension , BlockFrame , Builder , CFG } ;
8686use crate :: hair:: { Expr , ExprRef , LintLevel } ;
8787use rustc:: middle:: region;
88- use rustc:: ty:: Ty ;
8988use rustc:: hir;
9089use rustc:: mir:: * ;
9190use syntax_pos:: { DUMMY_SP , Span } ;
@@ -173,11 +172,11 @@ struct BreakableScope<'tcx> {
173172 region_scope : region:: Scope ,
174173 /// Where the body of the loop begins. `None` if block
175174 continue_block : Option < BasicBlock > ,
176- /// Block to branch into when the loop or block terminates (either by being `break`-en out
177- /// from, or by having its condition to become false)
175+ /// Block to branch into when the loop or block terminates (either by being
176+ /// `break`-en out from, or by having its condition to become false)
178177 break_block : BasicBlock ,
179- /// The destination of the loop/block expression itself (i.e., where to put the result of a
180- /// `break` expression)
178+ /// The destination of the loop/block expression itself (i.e., where to put
179+ /// the result of a `break` expression)
181180 break_destination : Place < ' tcx > ,
182181}
183182
@@ -728,10 +727,9 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
728727 span : Span ,
729728 region_scope : region:: Scope ,
730729 local : Local ,
731- place_ty : Ty < ' tcx > ,
732730 ) {
733- self . schedule_drop ( span, region_scope, local, place_ty , DropKind :: Storage ) ;
734- self . schedule_drop ( span, region_scope, local, place_ty , DropKind :: Value ) ;
731+ self . schedule_drop ( span, region_scope, local, DropKind :: Storage ) ;
732+ self . schedule_drop ( span, region_scope, local, DropKind :: Value ) ;
735733 }
736734
737735 /// Indicates that `place` should be dropped on exit from
0 commit comments