diff options
| author | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2023-02-16 10:06:59 +0000 |
|---|---|---|
| committer | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2023-04-21 22:32:38 +0000 |
| commit | 334423263a347b38ed0040be788feb3a4197c056 (patch) | |
| tree | ba566e07eef3ccd8ee4e9d53bd9dcf12c20b8cd6 /compiler/rustc_interface/src | |
| parent | 5bb58a68de2dbc7c122c4bb2438b0d88a2897470 (diff) | |
| download | rust-334423263a347b38ed0040be788feb3a4197c056.tar.gz rust-334423263a347b38ed0040be788feb3a4197c056.zip | |
Run `check_match` and `check_liveness` when MIR is built instead of having an explicit phase for them
Diffstat (limited to 'compiler/rustc_interface/src')
| -rw-r--r-- | compiler/rustc_interface/src/passes.rs | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/compiler/rustc_interface/src/passes.rs b/compiler/rustc_interface/src/passes.rs index 8e8e29fd4cf..4a45c9e4f3e 100644 --- a/compiler/rustc_interface/src/passes.rs +++ b/compiler/rustc_interface/src/passes.rs @@ -761,27 +761,6 @@ fn analysis(tcx: TyCtxt<'_>, (): ()) -> Result<()> { // passes are timed inside typeck rustc_hir_analysis::check_crate(tcx)?; - sess.time("misc_checking_2", || { - parallel!( - { - sess.time("match_checking", || { - tcx.hir().par_body_owners(|def_id| tcx.ensure().check_match(def_id)) - }); - }, - { - sess.time("liveness_checking", || { - tcx.hir().par_body_owners(|def_id| { - // this must run before MIR dump, because - // "not all control paths return a value" is reported here. - // - // maybe move the check to a MIR pass? - tcx.ensure().check_liveness(def_id); - }); - }); - } - ); - }); - sess.time("MIR_borrow_checking", || { tcx.hir().par_body_owners(|def_id| tcx.ensure().mir_borrowck(def_id)); }); |
