about summary refs log tree commit diff
path: root/src/librustc_driver
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2019-01-19 07:42:43 +0000
committerbors <bors@rust-lang.org>2019-01-19 07:42:43 +0000
commit1bc6baec76f4540c87b23ef349c664fd427d0f53 (patch)
tree5f3513b347b7666fd61cd16b02e75e3ec29f4bab /src/librustc_driver
parentaf73e64423a450d887df32e2998b8831d7ec653e (diff)
parente301f90f227ee2719cffa36b423d97360bfb3db2 (diff)
downloadrust-1bc6baec76f4540c87b23ef349c664fd427d0f53.tar.gz
rust-1bc6baec76f4540c87b23ef349c664fd427d0f53.zip
Auto merge of #57253 - Zoxc:incr-passes2, r=michaelwoerister
Make privacy checking, intrinsic checking and liveness checking incremental

Blocked on https://github.com/rust-lang/rust/pull/51487

r? @michaelwoerister
Diffstat (limited to 'src/librustc_driver')
-rw-r--r--src/librustc_driver/driver.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/librustc_driver/driver.rs b/src/librustc_driver/driver.rs
index 1ecb8ef112c..15cb5b032ad 100644
--- a/src/librustc_driver/driver.rs
+++ b/src/librustc_driver/driver.rs
@@ -1159,6 +1159,8 @@ pub fn default_provide(providers: &mut ty::query::Providers) {
     ty::provide(providers);
     traits::provide(providers);
     stability::provide(providers);
+    middle::intrinsicck::provide(providers);
+    middle::liveness::provide(providers);
     reachable::provide(providers);
     rustc_passes::provide(providers);
     rustc_traits::provide(providers);