Skip to content

Commit

Permalink
rustup
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed Sep 14, 2017
1 parent 237590a commit a66f622
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion miri/bin/miri.rs
Expand Up @@ -11,6 +11,7 @@ extern crate syntax;
extern crate log;

use rustc::session::Session;
use rustc::middle::cstore::CrateStore;
use rustc_driver::{Compilation, CompilerCalls, RustcDefaultCalls};
use rustc_driver::driver::{CompileState, CompileController};
use rustc::session::config::{self, Input, ErrorOutputType};
Expand Down Expand Up @@ -64,11 +65,12 @@ impl<'a> CompilerCalls<'a> for MiriCompilerCalls {
&mut self,
matches: &getopts::Matches,
sess: &Session,
cstore: &CrateStore,
input: &Input,
odir: &Option<PathBuf>,
ofile: &Option<PathBuf>,
) -> Compilation {
self.default.late_callback(matches, sess, input, odir, ofile)
self.default.late_callback(matches, sess, cstore, input, odir, ofile)
}
fn build_controller(
&mut self,
Expand Down

0 comments on commit a66f622

Please sign in to comment.