diff options
| author | Michael Goulet <michael@errs.io> | 2023-12-22 21:41:03 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-22 21:41:03 -0500 |
| commit | bfda19d5bd7491e649d5440188500c95ec5660f2 (patch) | |
| tree | 0abec9c181c4532db1ba57a11467e93fa757ef2c | |
| parent | 71899c3e23f2def8fc487e364a23cc3db27d7887 (diff) | |
| parent | b94a2a19917ce6ded5f8be99ee20b8818dea875b (diff) | |
| download | rust-bfda19d5bd7491e649d5440188500c95ec5660f2.tar.gz rust-bfda19d5bd7491e649d5440188500c95ec5660f2.zip | |
Rollup merge of #119171 - nnethercote:cleanup-errors-4, r=compiler-errors
Cleanup error handlers: round 4 More `rustc_errors` cleanups. A sequel to #118933. r? `@compiler-errors`
| -rw-r--r-- | src/base.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base.rs b/src/base.rs index df40a5eb475..8d3be19839e 100644 --- a/src/base.rs +++ b/src/base.rs @@ -179,7 +179,7 @@ pub(crate) fn compile_fn( let early_dcx = rustc_session::EarlyDiagCtxt::new( rustc_session::config::ErrorOutputType::default(), ); - early_dcx.early_error(format!( + early_dcx.early_fatal(format!( "backend implementation limit exceeded while compiling {name}", name = codegened_func.symbol_name )); |
