Skip to content
Snippets Groups Projects
Commit bc274214 authored by David Renshaw's avatar David Renshaw
Browse files

remove vestigial miri option

parent 7ce3fadf
No related branches found
No related tags found
No related merge requests found
...@@ -50,11 +50,7 @@ impl<'a> CompilerCalls<'a> for SeerCompilerCalls { ...@@ -50,11 +50,7 @@ impl<'a> CompilerCalls<'a> for SeerCompilerCalls {
let mut control = self.0.build_controller(sess, matches); let mut control = self.0.build_controller(sess, matches);
control.after_hir_lowering.callback = Box::new(after_hir_lowering); control.after_hir_lowering.callback = Box::new(after_hir_lowering);
control.after_analysis.callback = after_analysis_run_main(self.1.clone()); control.after_analysis.callback = after_analysis_run_main(self.1.clone());
if std::env::var("MIRI_HOST_TARGET") != Ok("yes".to_owned()) {
// only fully compile targets on the host
control.after_analysis.stop = Compilation::Stop; control.after_analysis.stop = Compilation::Stop;
}
control control
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment