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

Commit 51028b0

Browse files
authored
Merge pull request #8 from alexcrichton/fix
Update to master
2 parents 9631a49 + 83817f4 commit 51028b0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ extern crate getopts;
66
extern crate rustc;
77
extern crate rustc_driver;
88
extern crate rustc_errors;
9-
extern crate rustc_trans_utils;
9+
extern crate rustc_codegen_utils;
1010
extern crate syntax;
1111

1212
use rustc::middle::cstore::CrateStore;
1313
use rustc::session::{Session, early_error};
1414
use rustc::session::config::{self, ErrorOutputType, Input};
15-
use rustc_trans_utils::trans_crate::TransCrate;
15+
use rustc_codegen_utils::codegen_backend::CodegenBackend;
1616
use rustc_driver::driver::CompileController;
1717
use rustc_driver::{run_compiler, CompilerCalls, RustcDefaultCalls, Compilation, enable_save_analysis};
1818
use syntax::ast;
@@ -54,7 +54,7 @@ impl<'a> CompilerCalls<'a> for ShimCalls {
5454
}
5555

5656
fn late_callback(&mut self,
57-
a: &TransCrate,
57+
a: &CodegenBackend,
5858
b: &getopts::Matches,
5959
c: &Session,
6060
d: &CrateStore,

0 commit comments

Comments
 (0)