diff options
| author | bors <bors@rust-lang.org> | 2022-10-21 09:52:18 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-10-21 09:52:18 +0000 |
| commit | 0940040c0486a536be4f8685c7dd9a078f9e87c2 (patch) | |
| tree | 853d0ab60204348a26b53d5d2d81e3e2cdc6beef /compiler/rustc_interface/src | |
| parent | b1ab3b738ac718da74cd4aa0bb7f362d0adbdf84 (diff) | |
| parent | adc700b0899b183fbf45dbe2e9d788e97e4d726a (diff) | |
| download | rust-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.rs | 1 |
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); |
