about summary refs log tree commit diff
path: root/compiler/rustc_incremental/src/persist/mod.rs
diff options
context:
space:
mode:
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>2024-10-31 14:23:38 +0000
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>2024-11-09 17:55:39 +0000
commit8e9bbc899c7a1913ff04d9af516efee900aeffd1 (patch)
treeffae6ca1f59575e32ac1f07bef1ba77966952899 /compiler/rustc_incremental/src/persist/mod.rs
parentbec24a25cd61c5d252701b9119e4fe887b274937 (diff)
downloadrust-8e9bbc899c7a1913ff04d9af516efee900aeffd1.tar.gz
rust-8e9bbc899c7a1913ff04d9af516efee900aeffd1.zip
Move some code from Compiler::enter to GlobalCtxt::finish
Diffstat (limited to 'compiler/rustc_incremental/src/persist/mod.rs')
-rw-r--r--compiler/rustc_incremental/src/persist/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/rustc_incremental/src/persist/mod.rs b/compiler/rustc_incremental/src/persist/mod.rs
index 186db0a60a3..f5d5167e0e2 100644
--- a/compiler/rustc_incremental/src/persist/mod.rs
+++ b/compiler/rustc_incremental/src/persist/mod.rs
@@ -12,5 +12,6 @@ mod work_product;
 
 pub use fs::{finalize_session_directory, in_incr_comp_dir, in_incr_comp_dir_sess};
 pub use load::{LoadResult, load_query_result_cache, setup_dep_graph};
-pub use save::{save_dep_graph, save_work_product_index};
+pub(crate) use save::save_dep_graph;
+pub use save::save_work_product_index;
 pub use work_product::copy_cgu_workproduct_to_incr_comp_cache_dir;