about summary refs log tree commit diff
path: root/src/librustc_codegen_llvm/lib.rs
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2020-02-29 20:37:32 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2020-02-29 21:59:09 +0300
commite08c279eacfd37b8921378c8bd4ef8b8dc9bd176 (patch)
treea0aba27f258d4c1cc2e9692e4e653f558c819784 /src/librustc_codegen_llvm/lib.rs
parent6054a30370209472f2af45d2a84a9a9796b3c64a (diff)
downloadrust-e08c279eacfd37b8921378c8bd4ef8b8dc9bd176.tar.gz
rust-e08c279eacfd37b8921378c8bd4ef8b8dc9bd176.zip
Rename `syntax` to `rustc_ast` in source code
Diffstat (limited to 'src/librustc_codegen_llvm/lib.rs')
-rw-r--r--src/librustc_codegen_llvm/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_codegen_llvm/lib.rs b/src/librustc_codegen_llvm/lib.rs
index b1085ba1703..f3265754574 100644
--- a/src/librustc_codegen_llvm/lib.rs
+++ b/src/librustc_codegen_llvm/lib.rs
@@ -19,6 +19,7 @@ use rustc_span::symbol::Symbol;
 
 pub use llvm_util::target_features;
 use rustc::dep_graph::WorkProduct;
+use rustc_ast::expand::allocator::AllocatorKind;
 use rustc_codegen_ssa::back::lto::{LtoModuleCodegen, SerializedModule, ThinModule};
 use rustc_codegen_ssa::back::write::{CodegenContext, FatLTOInput, ModuleConfig};
 use rustc_codegen_ssa::traits::*;
@@ -28,7 +29,6 @@ use std::any::Any;
 use std::ffi::CStr;
 use std::fs;
 use std::sync::Arc;
-use syntax::expand::allocator::AllocatorKind;
 
 use rustc::dep_graph::DepGraph;
 use rustc::middle::cstore::{EncodedMetadata, MetadataLoaderDyn};