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/libsyntax/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/libsyntax/lib.rs')
| -rw-r--r-- | src/libsyntax/lib.rs | 6 | 
1 files changed, 1 insertions, 5 deletions
diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs index ad98e2a6b71..870ce1926ad 100644 --- a/src/libsyntax/lib.rs +++ b/src/libsyntax/lib.rs @@ -28,10 +28,6 @@ #![recursion_limit="256"] -// See librustc_cratesio_shim/Cargo.toml for a comment explaining this. -#[allow(unused_extern_crates)] -extern crate rustc_cratesio_shim; - #[macro_use] extern crate bitflags; extern crate core; extern crate serialize; @@ -39,6 +35,7 @@ extern crate serialize; pub extern crate rustc_errors as errors; extern crate syntax_pos; extern crate rustc_data_structures; +extern crate rustc_target; #[macro_use] extern crate scoped_tls; extern crate serialize as rustc_serialize; // used by deriving @@ -138,7 +135,6 @@ pub mod syntax { pub use ast; } -pub mod abi; pub mod ast; pub mod attr; pub mod codemap;  | 
