summary refs log tree commit diff
path: root/src/librustc_incremental/lib.rs
diff options
context:
space:
mode:
authorMichael Woerister <michaelwoerister@posteo>2017-10-19 14:32:39 +0200
committerMichael Woerister <michaelwoerister@posteo>2017-10-25 15:43:48 +0200
commitf55425dfcd2a156ff2f17e6dd4f9dcfaee9f5905 (patch)
tree37a89dc6c2ccbdacc2393bcff49f4e8afb92e14c /src/librustc_incremental/lib.rs
parent686d2a7f14d5a8068b70d59476cd564c62a5677d (diff)
downloadrust-f55425dfcd2a156ff2f17e6dd4f9dcfaee9f5905.tar.gz
rust-f55425dfcd2a156ff2f17e6dd4f9dcfaee9f5905.zip
incr.comp.: Implement query diagnostic persistence.
Diffstat (limited to 'src/librustc_incremental/lib.rs')
-rw-r--r--src/librustc_incremental/lib.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/librustc_incremental/lib.rs b/src/librustc_incremental/lib.rs
index 0294adb3f5d..e82c2897d21 100644
--- a/src/librustc_incremental/lib.rs
+++ b/src/librustc_incremental/lib.rs
@@ -17,6 +17,9 @@
 
 #![feature(rand)]
 #![feature(conservative_impl_trait)]
+#![feature(i128_type)]
+#![feature(inclusive_range_syntax)]
+#![feature(specialization)]
 
 extern crate graphviz;
 #[macro_use] extern crate rustc;
@@ -31,8 +34,9 @@ mod assert_dep_graph;
 mod persist;
 
 pub use assert_dep_graph::assert_dep_graph;
-pub use persist::load_dep_graph;
 pub use persist::dep_graph_tcx_init;
+pub use persist::load_dep_graph;
+pub use persist::load_query_result_cache;
 pub use persist::save_dep_graph;
 pub use persist::save_trans_partition;
 pub use persist::save_work_products;