Don't proceed to codegen if there are lint errors

This commit is contained in:
Joshua Nelson 2021-07-22 23:47:46 +00:00
parent 0ac13bd430
commit c008bb0012
2 changed files with 1 additions and 5 deletions

View File

@ -410,10 +410,6 @@ fn run_compiler(
sess.code_stats.print_type_sizes();
}
if sess.diagnostic().has_errors_or_lint_errors() {
return Err(ErrorReported);
}
let linker = queries.linker()?;
Ok(Some(linker))
})?;

View File

@ -411,7 +411,7 @@ pub fn abort_if_errors(&self) {
self.diagnostic().abort_if_errors();
}
pub fn compile_status(&self) -> Result<(), ErrorReported> {
if self.has_errors() {
if self.diagnostic().has_errors_or_lint_errors() {
self.diagnostic().emit_stashed_diagnostics();
Err(ErrorReported)
} else {