diff options
| author | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2022-12-07 14:31:50 +0000 |
|---|---|---|
| committer | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2022-12-09 14:53:24 +0000 |
| commit | 1c1d3570ee9f160827fdb99208c5afb4ca0cd0f9 (patch) | |
| tree | 62304282adc4a8d012dd584d45904b68e65fdc15 /compiler/rustc_interface/src | |
| parent | 2cd36f2c8902544371cfb6547be46842a8e7e314 (diff) | |
| download | rust-1c1d3570ee9f160827fdb99208c5afb4ca0cd0f9.tar.gz rust-1c1d3570ee9f160827fdb99208c5afb4ca0cd0f9.zip | |
Move the untracked cstore and source_span into a struct
Diffstat (limited to 'compiler/rustc_interface/src')
| -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 f808c1438bf..4748aea54e3 100644 --- a/compiler/rustc_interface/src/passes.rs +++ b/compiler/rustc_interface/src/passes.rs @@ -808,6 +808,7 @@ pub fn create_global_ctxt<'tcx>( definitions, global_ctxt: untracked_resolutions, ast_lowering: untracked_resolver_for_lowering, + untracked, } = resolver_outputs; let gcx = sess.time("setup_global_ctxt", || { @@ -819,6 +820,7 @@ pub fn create_global_ctxt<'tcx>( hir_arena, definitions, untracked_resolutions, + untracked, krate, dep_graph, queries.on_disk_cache.as_ref().map(OnDiskCache::as_dyn), |
