Skip to content

Commit

Permalink
Remove HIR liveness pass
Browse files Browse the repository at this point in the history
  • Loading branch information
ecstatic-morse committed May 13, 2020
1 parent 5cbed75 commit 22eb8f4
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 1,631 deletions.
4 changes: 0 additions & 4 deletions src/librustc_middle/query/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -430,10 +430,6 @@ rustc_queries! {
desc { |tcx| "checking intrinsics in {}", describe_as_module(key, tcx) }
}

query check_mod_liveness(key: DefId) -> () {
desc { |tcx| "checking liveness of variables in {}", describe_as_module(key, tcx) }
}

query check_mod_impl_wf(key: DefId) -> () {
desc { |tcx| "checking that impls are well-formed in {}", describe_as_module(key, tcx) }
}
Expand Down
2 changes: 0 additions & 2 deletions src/librustc_passes/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ mod intrinsicck;
mod lang_items;
pub mod layout_test;
mod lib_features;
mod liveness;
pub mod loops;
mod reachable;
mod region;
Expand All @@ -44,7 +43,6 @@ pub fn provide(providers: &mut Providers<'_>) {
lang_items::provide(providers);
lib_features::provide(providers);
loops::provide(providers);
liveness::provide(providers);
intrinsicck::provide(providers);
reachable::provide(providers);
region::provide(providers);
Expand Down
Loading

0 comments on commit 22eb8f4

Please sign in to comment.