@@ -81,8 +81,6 @@ pub(super) fn trace<'mir, 'tcx>(
81
81
borrowck_context. constraints . liveness_constraints . loans = Some ( live_loans) ;
82
82
} ;
83
83
84
- let polonius_facts_gathered = typeck. borrowck_context . all_facts . is_some ( ) ;
85
-
86
84
let cx = LivenessContext {
87
85
typeck,
88
86
body,
@@ -95,9 +93,7 @@ pub(super) fn trace<'mir, 'tcx>(
95
93
96
94
let mut results = LivenessResults :: new ( cx) ;
97
95
98
- if polonius_facts_gathered {
99
- results. add_extra_drop_facts ( relevant_live_locals. iter ( ) . copied ( ) . collect ( ) ) ;
100
- }
96
+ results. add_extra_drop_facts ( & relevant_live_locals) ;
101
97
102
98
results. compute_for_all_locals ( relevant_live_locals) ;
103
99
@@ -220,16 +216,17 @@ impl<'me, 'typeck, 'flow, 'tcx> LivenessResults<'me, 'typeck, 'flow, 'tcx> {
220
216
///
221
217
/// Add facts for all locals with free regions, since regions may outlive
222
218
/// the function body only at certain nodes in the CFG.
223
- fn add_extra_drop_facts ( & mut self , relevant_live_locals : FxIndexSet < Local > ) {
219
+ fn add_extra_drop_facts ( & mut self , relevant_live_locals : & [ Local ] ) -> Option < ( ) > {
224
220
let drop_used = self
225
221
. cx
226
222
. typeck
227
223
. borrowck_context
228
224
. all_facts
229
225
. as_ref ( )
230
- . map ( |facts| facts. var_dropped_at . clone ( ) )
231
- . into_iter ( )
232
- . flatten ( ) ;
226
+ . map ( |facts| facts. var_dropped_at . clone ( ) ) ?;
227
+
228
+ let relevant_live_locals: FxIndexSet < _ > = relevant_live_locals. iter ( ) . copied ( ) . collect ( ) ;
229
+
233
230
let locations = IntervalSet :: new ( self . cx . elements . num_points ( ) ) ;
234
231
235
232
for ( local, location_index) in drop_used {
@@ -250,6 +247,7 @@ impl<'me, 'typeck, 'flow, 'tcx> LivenessResults<'me, 'typeck, 'flow, 'tcx> {
250
247
}
251
248
}
252
249
}
250
+ Some ( ( ) )
253
251
}
254
252
255
253
/// Clear the value of fields that are "per local variable".
0 commit comments