Skip to content

Commit c78173e

Browse files
authored
Rollup merge of #133567 - bjorn3:various_cleanups, r=cjgillot
A bunch of cleanups These are all extracted from a branch I have to get rid of driver queries. Most of the commits are not directly necessary for this, but were found in the process of implementing the removal of driver queries. Previous PR: rust-lang/rust#132410
2 parents f586c70 + 38c363a commit c78173e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bin/miri.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,8 @@ fn run_compiler(
289289
let exit_code = rustc_driver::catch_with_exit_code(move || {
290290
rustc_driver::RunCompiler::new(&args, callbacks)
291291
.set_using_internal_features(using_internal_features)
292-
.run()
292+
.run();
293+
Ok(())
293294
});
294295
std::process::exit(exit_code)
295296
}

0 commit comments

Comments
 (0)