File tree 2 files changed +3
-6
lines changed
2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -287,8 +287,7 @@ impl<'tcx> AnalysisCtxt<'tcx> {
287
287
param_env,
288
288
instance,
289
289
}
290
- . into_engine ( self . tcx , body)
291
- . iterate_to_fixpoint ( )
290
+ . iterate_to_fixpoint ( self . tcx , body, None )
292
291
. into_results_cursor ( body) ;
293
292
294
293
let mut adjustment = AdjustmentBoundsOrError :: default ( ) ;
Original file line number Diff line number Diff line change @@ -92,8 +92,7 @@ impl<'tcx> AnalysisCtxt<'tcx> {
92
92
param_env,
93
93
instance,
94
94
}
95
- . into_engine ( self . tcx , body)
96
- . iterate_to_fixpoint ( )
95
+ . iterate_to_fixpoint ( self . tcx , body, None )
97
96
. into_results_cursor ( body) ;
98
97
99
98
for ( b, data) in rustc_middle:: mir:: traversal:: reachable ( body) {
@@ -504,8 +503,7 @@ impl<'tcx> AnalysisCtxt<'tcx> {
504
503
param_env,
505
504
instance,
506
505
}
507
- . into_engine ( self . tcx , body)
508
- . iterate_to_fixpoint ( )
506
+ . iterate_to_fixpoint ( self . tcx , body, None )
509
507
. into_results_cursor ( body) ;
510
508
511
509
let mut expectation_infer = ExpectationRange :: top ( ) ;
You can’t perform that action at this time.
0 commit comments