Skip to content

Commit 8080f54

Browse files
committed
Auto merge of #79575 - jyn514:time-passes, r=Mark-Simulacrum
Don't time `emit_ignored_resolution_errors` This printed several hundred lines each time rustdoc was run, almost all of which rounded to 0.000. Since this isn't useful info, don't print it everywhere, so other perf info is easier to read. r? `@Mark-Simulacrum`
2 parents 2c56ea3 + db7373d commit 8080f54

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/librustdoc/core.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -411,9 +411,7 @@ crate fn run_core(
411411
let hir = tcx.hir();
412412
let body = hir.body(hir.body_owned_by(hir.local_def_id_to_hir_id(def_id)));
413413
debug!("visiting body for {:?}", def_id);
414-
tcx.sess.time("emit_ignored_resolution_errors", || {
415-
EmitIgnoredResolutionErrors::new(tcx).visit_body(body);
416-
});
414+
EmitIgnoredResolutionErrors::new(tcx).visit_body(body);
417415
(rustc_interface::DEFAULT_QUERY_PROVIDERS.typeck)(tcx, def_id)
418416
};
419417
}),

0 commit comments

Comments
 (0)