about summary refs log tree commit diff
path: root/compiler/rustc_interface/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-10-21 09:52:18 +0000
committerbors <bors@rust-lang.org>2022-10-21 09:52:18 +0000
commit0940040c0486a536be4f8685c7dd9a078f9e87c2 (patch)
tree853d0ab60204348a26b53d5d2d81e3e2cdc6beef /compiler/rustc_interface/src
parentb1ab3b738ac718da74cd4aa0bb7f362d0adbdf84 (diff)
parentadc700b0899b183fbf45dbe2e9d788e97e4d726a (diff)
downloadrust-0940040c0486a536be4f8685c7dd9a078f9e87c2.tar.gz
rust-0940040c0486a536be4f8685c7dd9a078f9e87c2.zip
Auto merge of #103310 - lcnr:rustc_hir_typeck, r=compiler-errors
move hir typeck into separate crate

second part https://github.com/rust-lang/compiler-team/issues/529

I avoided pretty much anything that wasn't just a simple move + path adjustment. Left fixmes for methods which are at an odd place

r? `@compiler-errors`
Diffstat (limited to 'compiler/rustc_interface/src')
-rw-r--r--compiler/rustc_interface/src/passes.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_interface/src/passes.rs b/compiler/rustc_interface/src/passes.rs
index 8fd4224ca38..a47c3e3253e 100644
--- a/compiler/rustc_interface/src/passes.rs
+++ b/compiler/rustc_interface/src/passes.rs
@@ -736,6 +736,7 @@ pub static DEFAULT_QUERY_PROVIDERS: LazyLock<Providers> = LazyLock::new(|| {
     rustc_monomorphize::provide(providers);
     rustc_privacy::provide(providers);
     rustc_hir_analysis::provide(providers);
+    rustc_hir_typeck::provide(providers);
     ty::provide(providers);
     traits::provide(providers);
     rustc_passes::provide(providers);