diff options
| author | bors <bors@rust-lang.org> | 2024-11-28 00:51:37 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-11-28 00:51:37 +0000 |
| commit | eddb717281a9031f645d88dd3b8323a7e25632cc (patch) | |
| tree | 0a9df155daa91a5aa5720e39cad9fe79c2b51864 /compiler/rustc_interface/src/passes.rs | |
| parent | 66adeaf46b7a646daeed29518ef76235fcdb9726 (diff) | |
| parent | 5fc4f85f60f9b1169bddf62d4f23340d81f14a0a (diff) | |
| download | rust-eddb717281a9031f645d88dd3b8323a7e25632cc.tar.gz rust-eddb717281a9031f645d88dd3b8323a7e25632cc.zip | |
Auto merge of #133551 - matthiaskrgr:rollup-m0rr5oz, r=matthiaskrgr
Rollup of 5 pull requests Successful merges: - #132410 (Some more refactorings towards removing driver queries) - #133418 (coverage: Store coverage source regions as `Span` until codegen) - #133498 (Add missing code examples on `LocalKey`) - #133518 (Structurally resolve before checking `!` in HIR typeck) - #133521 (Structurally resolve before matching on type of projection) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_interface/src/passes.rs')
| -rw-r--r-- | compiler/rustc_interface/src/passes.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_interface/src/passes.rs b/compiler/rustc_interface/src/passes.rs index 43a98782016..2905fe688b5 100644 --- a/compiler/rustc_interface/src/passes.rs +++ b/compiler/rustc_interface/src/passes.rs @@ -689,10 +689,12 @@ pub static DEFAULT_QUERY_PROVIDERS: LazyLock<Providers> = LazyLock::new(|| { rustc_const_eval::provide(providers); rustc_middle::hir::provide(providers); rustc_borrowck::provide(providers); + rustc_incremental::provide(providers); rustc_mir_build::provide(providers); rustc_mir_transform::provide(providers); rustc_monomorphize::provide(providers); rustc_privacy::provide(providers); + rustc_query_impl::provide(providers); rustc_resolve::provide(providers); rustc_hir_analysis::provide(providers); rustc_hir_typeck::provide(providers); |
