From: topecongiro Date: Thu, 14 Sep 2017 04:18:08 +0000 (+0900) Subject: Add a missing argument X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=86e178e7864ff89624f011421f42fc3252f3ce94;p=rust.git Add a missing argument --- diff --git a/src/main.rs b/src/main.rs index 89de07115c5..f4945998fde 100644 --- a/src/main.rs +++ b/src/main.rs @@ -64,12 +64,13 @@ fn late_callback( &mut self, matches: &getopts::Matches, sess: &Session, + crate_stores: &rustc::middle::cstore::CrateStore, input: &Input, odir: &Option, ofile: &Option, ) -> Compilation { self.default - .late_callback(matches, sess, input, odir, ofile) + .late_callback(matches, sess, crate_stores, input, odir, ofile) } fn build_controller(&mut self, sess: &Session, matches: &getopts::Matches) -> driver::CompileController<'a> { let mut control = self.default.build_controller(sess, matches);