diff --git a/benches/helpers/miri_helper.rs b/benches/helpers/miri_helper.rs index 2e71c7eb8b1..a77f914c1c6 100644 --- a/benches/helpers/miri_helper.rs +++ b/benches/helpers/miri_helper.rs @@ -55,5 +55,5 @@ pub fn run(filename: &str, bencher: &mut Bencher) { "--sysroot".to_string(), find_sysroot(), ]; - rustc_driver::run_compiler(args, &mut MiriCompilerCalls { bencher }, None, None).unwrap() + rustc_driver::run_compiler(args, &mut MiriCompilerCalls { bencher }, None, None, None).unwrap() } diff --git a/rust-version b/rust-version index 362f89b5d1f..049d0f2c878 100644 --- a/rust-version +++ b/rust-version @@ -1 +1 @@ -1ec980d225fff2346a1a631a7ffc88b37e9e18af +26373fb4baa9c5b8a7a1e2821fcfa930a85d327d diff --git a/src/bin/miri-rustc-tests.rs b/src/bin/miri-rustc-tests.rs index 56d19e62749..7c9dfbb277b 100644 --- a/src/bin/miri-rustc-tests.rs +++ b/src/bin/miri-rustc-tests.rs @@ -145,6 +145,7 @@ fn main() { &mut MiriCompilerCalls { host_target }, None, Some(Box::new(buf)), + None, ); }); diff --git a/src/bin/miri.rs b/src/bin/miri.rs index 4363f9a150a..e3317d0d4d6 100644 --- a/src/bin/miri.rs +++ b/src/bin/miri.rs @@ -157,7 +157,7 @@ fn run_compiler(mut args: Vec, callbacks: &mut (dyn rustc_driver::Callba // Invoke compiler, and handle return code. let exit_code = rustc_driver::catch_with_exit_code(move || { - rustc_driver::run_compiler(&args, callbacks, None, None) + rustc_driver::run_compiler(&args, callbacks, None, None, None) }); std::process::exit(exit_code) }