diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2025-02-06 21:56:28 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-06 21:56:28 +0100 |
| commit | 79e5424e313cb6fc725f738a4ac1d3220932d3cd (patch) | |
| tree | c3340df191c21a43c9d8dccec48dfda6ba6ac9ed /compiler/rustc_interface/src | |
| parent | 3eb1ef836eaece6dd52ce0b27f9983b8c6b20ee1 (diff) | |
| parent | b9b2c3affcc51e85d793f51875db067513642863 (diff) | |
| download | rust-79e5424e313cb6fc725f738a4ac1d3220932d3cd.tar.gz rust-79e5424e313cb6fc725f738a4ac1d3220932d3cd.zip | |
Rollup merge of #136636 - bjorn3:error_cleanup, r=compiler-errors
Couple of minor cleanups to the diagnostic infrastructure
Diffstat (limited to 'compiler/rustc_interface/src')
| -rw-r--r-- | compiler/rustc_interface/src/interface.rs | 1 | ||||
| -rw-r--r-- | compiler/rustc_interface/src/tests.rs | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_interface/src/interface.rs b/compiler/rustc_interface/src/interface.rs index 97fc542910c..b35703d8e73 100644 --- a/compiler/rustc_interface/src/interface.rs +++ b/compiler/rustc_interface/src/interface.rs @@ -442,7 +442,6 @@ pub fn run_compiler<R: Send>(config: Config, f: impl FnOnce(&Compiler) -> R + Se locale_resources.push(codegen_backend.locale_resource()); let mut sess = rustc_session::build_session( - early_dcx, config.opts, CompilerIO { input: config.input, diff --git a/compiler/rustc_interface/src/tests.rs b/compiler/rustc_interface/src/tests.rs index fb69dd54811..46d6f37a91c 100644 --- a/compiler/rustc_interface/src/tests.rs +++ b/compiler/rustc_interface/src/tests.rs @@ -65,7 +65,6 @@ where static USING_INTERNAL_FEATURES: AtomicBool = AtomicBool::new(false); let sess = build_session( - early_dcx, sessopts, io, None, |
