Skip to content
This repository was archived by the owner on Mar 1, 2019. It is now read-only.

Update to master #8

Merged
merged 1 commit into from
May 17, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ extern crate getopts;
extern crate rustc;
extern crate rustc_driver;
extern crate rustc_errors;
extern crate rustc_trans_utils;
extern crate rustc_codegen_utils;
extern crate syntax;

use rustc::middle::cstore::CrateStore;
use rustc::session::{Session, early_error};
use rustc::session::config::{self, ErrorOutputType, Input};
use rustc_trans_utils::trans_crate::TransCrate;
use rustc_codegen_utils::codegen_backend::CodegenBackend;
use rustc_driver::driver::CompileController;
use rustc_driver::{run_compiler, CompilerCalls, RustcDefaultCalls, Compilation, enable_save_analysis};
use syntax::ast;
Expand Down Expand Up @@ -54,7 +54,7 @@ impl<'a> CompilerCalls<'a> for ShimCalls {
}

fn late_callback(&mut self,
a: &TransCrate,
a: &CodegenBackend,
b: &getopts::Matches,
c: &Session,
d: &CrateStore,
Expand Down