Skip to content

Commit 8d1f5b3

Browse files
committed
Avoid a couple of unnecessary EarlyDiagCtxt uses
1 parent e3ffbbd commit 8d1f5b3

File tree

4 files changed

+18
-15
lines changed

4 files changed

+18
-15
lines changed

compiler/rustc_driver_impl/src/lib.rs

+9-10
Original file line numberDiff line numberDiff line change
@@ -367,18 +367,17 @@ fn run_compiler(
367367
return early_exit();
368368
}
369369

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 {
373371
return early_exit();
374372
}
375373

376374
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
378377
}
379378

380379
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());
382381
return early_exit();
383382
}
384383

@@ -674,7 +673,7 @@ fn process_rlink(sess: &Session, compiler: &interface::Compiler) {
674673
}
675674
}
676675

677-
fn list_metadata(early_dcx: &EarlyDiagCtxt, sess: &Session, metadata_loader: &dyn MetadataLoader) {
676+
fn list_metadata(sess: &Session, metadata_loader: &dyn MetadataLoader) {
678677
match sess.io.input {
679678
Input::File(ref ifile) => {
680679
let path = &(*ifile);
@@ -691,13 +690,13 @@ fn list_metadata(early_dcx: &EarlyDiagCtxt, sess: &Session, metadata_loader: &dy
691690
safe_println!("{}", String::from_utf8(v).unwrap());
692691
}
693692
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");
695695
}
696696
}
697697
}
698698

699699
fn print_crate_info(
700-
early_dcx: &EarlyDiagCtxt,
701700
codegen_backend: &dyn CodegenBackend,
702701
sess: &Session,
703702
parse_attrs: bool,
@@ -881,8 +880,8 @@ fn print_crate_info(
881880
.expect("unknown Apple target OS");
882881
println_info!("deployment_target={}", format!("{major}.{minor}"))
883882
} 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")
886885
}
887886
}
888887
}

tests/run-make/jobserver-error/cannot_open_fd.stderr

+2
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@ warning: failed to connect to jobserver from environment variable `MAKEFLAGS="--
44

55
error: no input filename given
66

7+
error: aborting due to 1 previous error
8+

tests/run-make/no-input-file/rmake.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
use run_make_support::rustc;
22

33
fn main() {
4-
rustc()
5-
.print("crate-name")
6-
.run_fail()
7-
.assert_exit_code(1)
8-
.assert_stderr_equals("error: no input filename given");
4+
rustc().print("crate-name").run_fail().assert_exit_code(1).assert_stderr_equals(
5+
"error: no input filename given
6+
7+
error: aborting due to 1 previous error",
8+
);
99
}
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
error: only Apple targets currently support deployment version info
22

3+
error: aborting due to 1 previous error
4+

0 commit comments

Comments
 (0)