]> git.lizzy.rs Git - rust.git/commitdiff
Add a missing argument
authortopecongiro <seuchida@gmail.com>
Thu, 14 Sep 2017 04:18:08 +0000 (13:18 +0900)
committertopecongiro <seuchida@gmail.com>
Thu, 14 Sep 2017 04:18:08 +0000 (13:18 +0900)
src/main.rs

index 89de07115c540c9fba46421d41de84989fdeaaa3..f4945998fde5454c4c708b810f5a671096df9ddd 100644 (file)
@@ -64,12 +64,13 @@ fn late_callback(
         &mut self,
         matches: &getopts::Matches,
         sess: &Session,
+        crate_stores: &rustc::middle::cstore::CrateStore,
         input: &Input,
         odir: &Option<PathBuf>,
         ofile: &Option<PathBuf>,
     ) -> 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);