From 86e178e7864ff89624f011421f42fc3252f3ce94 Mon Sep 17 00:00:00 2001 From: topecongiro Date: Thu, 14 Sep 2017 13:18:08 +0900 Subject: [PATCH] Add a missing argument --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); -- 2.44.0