Skip to content

Commit 91fad92

Browse files
committed
Auto merge of #141773 - oli-obk:coro-borrow-parallel-loop, r=compiler-errors
Merge coroutine obligation checking into borrowck parallel loop r? `@ghost` attempts at increasing parallelism in parallel rustc by merging parallel blocks that run in sequence
2 parents 2fc3dee + c56a309 commit 91fad92

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

compiler/rustc_interface/src/passes.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1012,10 +1012,6 @@ fn run_required_analyses(tcx: TyCtxt<'_>) {
10121012
{
10131013
tcx.ensure_ok().mir_drops_elaborated_and_const_checked(def_id);
10141014
}
1015-
});
1016-
});
1017-
sess.time("coroutine_obligations", || {
1018-
tcx.par_hir_body_owners(|def_id| {
10191015
if tcx.is_coroutine(def_id.to_def_id()) {
10201016
tcx.ensure_ok().mir_coroutine_witnesses(def_id);
10211017
let _ = tcx.ensure_ok().check_coroutine_obligations(

0 commit comments

Comments
 (0)