about summary refs log tree commit diff
path: root/compiler/rustc_interface/src
diff options
context:
space:
mode:
authorYuki Okushi <jtitor@2k36.org>2022-10-11 18:37:55 +0900
committerGitHub <noreply@github.com>2022-10-11 18:37:55 +0900
commit98764c0c7292d866d795f69ccd286d0599e06361 (patch)
treecf2026df087d50a711d24e77db71397d328e41f6 /compiler/rustc_interface/src
parentb380518691e0333f2e9f7bd5c49d4e16ffbdeff6 (diff)
parenta474ec50b7010d289d103242a63c806ed6f01c2e (diff)
downloadrust-98764c0c7292d866d795f69ccd286d0599e06361.tar.gz
rust-98764c0c7292d866d795f69ccd286d0599e06361.zip
Rollup merge of #102859 - cjgillot:collect-lifetimes, r=oli-obk
Move lifetime resolution module to rustc_hir_analysis.

Now that lifetime resolution has been removed from it, this file has nothing to do in `rustc_resolve`.  It's purpose is to compute Debruijn indices for lifetimes, so let's put it in type collection.
Diffstat (limited to 'compiler/rustc_interface/src')
-rw-r--r--compiler/rustc_interface/src/passes.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/passes.rs b/compiler/rustc_interface/src/passes.rs
index ad3e020b581..8fd4224ca38 100644
--- a/compiler/rustc_interface/src/passes.rs
+++ b/compiler/rustc_interface/src/passes.rs
@@ -739,7 +739,6 @@ pub static DEFAULT_QUERY_PROVIDERS: LazyLock<Providers> = LazyLock::new(|| {
     ty::provide(providers);
     traits::provide(providers);
     rustc_passes::provide(providers);
-    rustc_resolve::provide(providers);
     rustc_traits::provide(providers);
     rustc_ty_utils::provide(providers);
     rustc_metadata::provide(providers);