Skip to content

Commit e3ffbbd

Browse files
committed
Ensure run_compiler always aborts on errors
Before if the closure passed to run_compiler emitted an error without calling abort_if_errors and no diagnostics have been stashed, run_compiler would return normally as if no error had occured.
1 parent 7332e79 commit e3ffbbd

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

compiler/rustc_interface/src/interface.rs

+9-12
Original file line numberDiff line numberDiff line change
@@ -495,9 +495,8 @@ pub fn run_compiler<R: Send>(config: Config, f: impl FnOnce(&Compiler) -> R + Se
495495
let res = {
496496
// If `f` panics, `finish_diagnostics` will run during
497497
// unwinding because of the `defer`.
498-
let mut guar = None;
499498
let sess_abort_guard = defer(|| {
500-
guar = compiler.sess.finish_diagnostics(&config.registry);
499+
compiler.sess.finish_diagnostics(&config.registry);
501500
});
502501

503502
let res = f(&compiler);
@@ -506,16 +505,14 @@ pub fn run_compiler<R: Send>(config: Config, f: impl FnOnce(&Compiler) -> R + Se
506505
// normally when `sess_abort_guard` is dropped.
507506
drop(sess_abort_guard);
508507

509-
// If `finish_diagnostics` emits errors (e.g. stashed
510-
// errors) we can't return an error directly, because the
511-
// return type of this function is `R`, not `Result<R, E>`.
512-
// But we need to communicate the errors' existence to the
513-
// caller, otherwise the caller might mistakenly think that
514-
// no errors occurred and return a zero exit code. So we
515-
// abort (panic) instead, similar to if `f` had panicked.
516-
if guar.is_some() {
517-
compiler.sess.dcx().abort_if_errors();
518-
}
508+
// If error diagnostics have been emitted, we can't return an
509+
// error directly, because the return type of this function
510+
// is `R`, not `Result<R, E>`. But we need to communicate the
511+
// errors' existence to the caller, otherwise the caller might
512+
// mistakenly think that no errors occurred and return a zero
513+
// exit code. So we abort (panic) instead, similar to if `f`
514+
// had panicked.
515+
compiler.sess.dcx().abort_if_errors();
519516

520517
res
521518
};

0 commit comments

Comments
 (0)