@@ -367,18 +367,17 @@ fn run_compiler(
367
367
return early_exit( ) ;
368
368
}
369
369
370
- let early_dcx = EarlyDiagCtxt :: new( sess. opts. error_format) ;
371
-
372
- if print_crate_info( & early_dcx, codegen_backend, sess, has_input) == Compilation :: Stop {
370
+ if print_crate_info( codegen_backend, sess, has_input) == Compilation :: Stop {
373
371
return early_exit( ) ;
374
372
}
375
373
376
374
if !has_input {
377
- early_dcx. early_fatal( "no input filename given" ) ; // this is fatal
375
+ #[ allow( rustc:: diagnostic_outside_of_impl) ]
376
+ sess. dcx( ) . fatal( "no input filename given" ) ; // this is fatal
378
377
}
379
378
380
379
if !sess. opts. unstable_opts. ls. is_empty( ) {
381
- list_metadata( & early_dcx , sess, & * codegen_backend. metadata_loader( ) ) ;
380
+ list_metadata( sess, & * codegen_backend. metadata_loader( ) ) ;
382
381
return early_exit( ) ;
383
382
}
384
383
@@ -674,7 +673,7 @@ fn process_rlink(sess: &Session, compiler: &interface::Compiler) {
674
673
}
675
674
}
676
675
677
- fn list_metadata( early_dcx : & EarlyDiagCtxt , sess: & Session , metadata_loader: & dyn MetadataLoader ) {
676
+ fn list_metadata( sess: & Session , metadata_loader: & dyn MetadataLoader ) {
678
677
match sess. io. input {
679
678
Input :: File ( ref ifile) => {
680
679
let path = & ( * ifile) ;
@@ -691,13 +690,13 @@ fn list_metadata(early_dcx: &EarlyDiagCtxt, sess: &Session, metadata_loader: &dy
691
690
safe_println!( "{}" , String :: from_utf8( v) . unwrap( ) ) ;
692
691
}
693
692
Input :: Str { .. } => {
694
- early_dcx. early_fatal( "cannot list metadata for stdin" ) ;
693
+ #[ allow( rustc:: diagnostic_outside_of_impl) ]
694
+ sess. dcx( ) . fatal( "cannot list metadata for stdin" ) ;
695
695
}
696
696
}
697
697
}
698
698
699
699
fn print_crate_info(
700
- early_dcx: & EarlyDiagCtxt ,
701
700
codegen_backend: & dyn CodegenBackend ,
702
701
sess: & Session ,
703
702
parse_attrs: bool ,
@@ -881,8 +880,8 @@ fn print_crate_info(
881
880
. expect( "unknown Apple target OS" ) ;
882
881
println_info!( "deployment_target={}" , format!( "{major}.{minor}" ) )
883
882
} else {
884
- early_dcx
885
- . early_fatal ( "only Apple targets currently support deployment version info" )
883
+ # [ allow ( rustc :: diagnostic_outside_of_impl ) ]
884
+ sess . dcx ( ) . fatal ( "only Apple targets currently support deployment version info" )
886
885
}
887
886
}
888
887
}
0 commit comments