File tree 4 files changed +9
-12
lines changed
4 files changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ use rustc_errors::{
30
30
} ;
31
31
use rustc_feature:: find_gated_cfg;
32
32
use rustc_interface:: util:: { self , get_codegen_backend} ;
33
- use rustc_interface:: { interface, Queries } ;
33
+ use rustc_interface:: { interface, passes , Queries } ;
34
34
use rustc_lint:: unerased_lint_store;
35
35
use rustc_metadata:: creader:: MetadataLoader ;
36
36
use rustc_metadata:: locator;
@@ -399,7 +399,9 @@ fn run_compiler(
399
399
Ok ( ( ) )
400
400
} ) ?;
401
401
402
- queries. write_dep_info( ) ?;
402
+ queries. global_ctxt( ) ?. enter( |tcx| {
403
+ passes:: write_dep_info( tcx) ;
404
+ } ) ;
403
405
} else {
404
406
let krate = queries. parse( ) ?;
405
407
pretty:: print(
@@ -427,7 +429,9 @@ fn run_compiler(
427
429
return early_exit( ) ;
428
430
}
429
431
430
- queries. write_dep_info( ) ?;
432
+ queries. global_ctxt( ) ?. enter( |tcx| {
433
+ passes:: write_dep_info( tcx) ;
434
+ } ) ;
431
435
432
436
if sess. opts. output_types. contains_key( & OutputType :: DepInfo )
433
437
&& sess. opts. output_types. len( ) == 1
Original file line number Diff line number Diff line change 8
8
mod callbacks;
9
9
mod errors;
10
10
pub mod interface;
11
- mod passes;
11
+ pub mod passes;
12
12
mod proc_macro_decls;
13
13
mod queries;
14
14
pub mod util;
Original file line number Diff line number Diff line change @@ -562,7 +562,7 @@ fn resolver_for_lowering_raw<'tcx>(
562
562
( tcx. arena . alloc ( Steal :: new ( ( untracked_resolver_for_lowering, Lrc :: new ( krate) ) ) ) , resolutions)
563
563
}
564
564
565
- pub ( crate ) fn write_dep_info ( tcx : TyCtxt < ' _ > ) {
565
+ pub fn write_dep_info ( tcx : TyCtxt < ' _ > ) {
566
566
// Make sure name resolution and macro expansion is run for
567
567
// the side-effect of providing a complete set of all
568
568
// accessed files and env vars.
Original file line number Diff line number Diff line change @@ -117,13 +117,6 @@ impl<'tcx> Queries<'tcx> {
117
117
} )
118
118
}
119
119
120
- pub fn write_dep_info ( & ' tcx self ) -> Result < ( ) > {
121
- self . global_ctxt ( ) ?. enter ( |tcx| {
122
- passes:: write_dep_info ( tcx) ;
123
- } ) ;
124
- Ok ( ( ) )
125
- }
126
-
127
120
pub fn codegen_and_build_linker ( & ' tcx self ) -> Result < Linker > {
128
121
self . global_ctxt ( ) ?. enter ( |tcx| {
129
122
let ongoing_codegen = passes:: start_codegen ( & * self . compiler . codegen_backend , tcx) ?;
You can’t perform that action at this time.
0 commit comments