diff options
| author | bjorn3 <bjorn3@users.noreply.github.com> | 2017-10-19 11:01:31 +0200 |
|---|---|---|
| committer | bjorn3 <bjorn3@users.noreply.github.com> | 2017-10-19 11:01:31 +0200 |
| commit | 906523efea60f4d58d6ce58bc61589d4ff3d7b4e (patch) | |
| tree | fc1effcd46f2827dfc809ba2a25bdd16de0943fe /src/librustc_trans_utils/lib.rs | |
| parent | b7960878ba77124505aabe7dc99d0a898354c326 (diff) | |
| download | rust-906523efea60f4d58d6ce58bc61589d4ff3d7b4e.tar.gz rust-906523efea60f4d58d6ce58bc61589d4ff3d7b4e.zip | |
Move collector to rustc_trans_utils
Diffstat (limited to 'src/librustc_trans_utils/lib.rs')
| -rw-r--r-- | src/librustc_trans_utils/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/librustc_trans_utils/lib.rs b/src/librustc_trans_utils/lib.rs index 6873befd2bf..bc8f8d5a6da 100644 --- a/src/librustc_trans_utils/lib.rs +++ b/src/librustc_trans_utils/lib.rs @@ -38,6 +38,7 @@ extern crate log; #[macro_use] extern crate rustc; extern crate rustc_back; +extern crate rustc_data_structures; extern crate syntax; extern crate syntax_pos; @@ -49,7 +50,11 @@ use rustc::util::nodemap::NodeSet; use syntax::attr; +mod common; pub mod link; +pub mod collector; +pub mod trans_item; +pub mod monomorphize; pub mod trans_crate; /// check for the #[rustc_error] annotation, which forces an |
