diff options
| author | Michael Woerister <michaelwoerister@posteo> | 2017-10-19 14:32:39 +0200 |
|---|---|---|
| committer | Michael Woerister <michaelwoerister@posteo> | 2017-10-25 15:43:48 +0200 |
| commit | f55425dfcd2a156ff2f17e6dd4f9dcfaee9f5905 (patch) | |
| tree | 37a89dc6c2ccbdacc2393bcff49f4e8afb92e14c /src/librustc_incremental/lib.rs | |
| parent | 686d2a7f14d5a8068b70d59476cd564c62a5677d (diff) | |
| download | rust-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.rs | 6 |
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; |
