about summary refs log tree commit diff
path: root/src/libsyntax/parse/mod.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2018-04-26 16:00:48 +0000
committerbors <bors@rust-lang.org>2018-04-26 16:00:48 +0000
commit949010d23e9f7037a8e6f323588873b3d2438fb1 (patch)
tree5fc47e5862bd70b8728e6eb204c815f007c8dcad /src/libsyntax/parse/mod.rs
parent88cd36714c6d62393f18d8efa2ea2724e1ec4a9d (diff)
parenta131c518ad640ccd12711ccd63d8b98cafa55ee9 (diff)
downloadrust-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/parse/mod.rs')
-rw-r--r--src/libsyntax/parse/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/mod.rs b/src/libsyntax/parse/mod.rs
index 0397c3297db..ff09c6aa2f0 100644
--- a/src/libsyntax/parse/mod.rs
+++ b/src/libsyntax/parse/mod.rs
@@ -678,7 +678,7 @@ mod tests {
     use syntax_pos::{self, Span, BytePos, Pos, NO_EXPANSION};
     use codemap::{respan, Spanned};
     use ast::{self, Ident, PatKind};
-    use abi::Abi;
+    use rustc_target::spec::abi::Abi;
     use attr::first_attr_value_str_by_name;
     use parse;
     use parse::parser::Parser;