diff options
| author | bors <bors@rust-lang.org> | 2018-04-26 16:00:48 +0000 | 
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2018-04-26 16:00:48 +0000 | 
| commit | 949010d23e9f7037a8e6f323588873b3d2438fb1 (patch) | |
| tree | 5fc47e5862bd70b8728e6eb204c815f007c8dcad /src/librustdoc/lib.rs | |
| parent | 88cd36714c6d62393f18d8efa2ea2724e1ec4a9d (diff) | |
| parent | a131c518ad640ccd12711ccd63d8b98cafa55ee9 (diff) | |
| download | rust-949010d23e9f7037a8e6f323588873b3d2438fb1.tar.gz rust-949010d23e9f7037a8e6f323588873b3d2438fb1.zip | |
Auto merge of #50228 - irinagpopa:backstory-v2, r=nikomatsakis
Rename rustc_back to rustc_target and move ABI code to it. Fixes #45226.
Diffstat (limited to 'src/librustdoc/lib.rs')
| -rw-r--r-- | src/librustdoc/lib.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs index 60b713f2995..614386a583a 100644 --- a/src/librustdoc/lib.rs +++ b/src/librustdoc/lib.rs @@ -35,8 +35,8 @@ extern crate rustc_trans_utils; extern crate rustc_driver; extern crate rustc_resolve; extern crate rustc_lint; -extern crate rustc_back; extern crate rustc_metadata; +extern crate rustc_target; extern crate rustc_typeck; extern crate serialize; #[macro_use] extern crate syntax; @@ -66,7 +66,7 @@ use externalfiles::ExternalHtml; use rustc::session::search_paths::SearchPaths; use rustc::session::config::{ErrorOutputType, RustcOptGroup, Externs, CodegenOptions}; use rustc::session::config::{nightly_options, build_codegen_options}; -use rustc_back::target::TargetTriple; +use rustc_target::spec::TargetTriple; #[macro_use] pub mod externalfiles; | 
