about summary refs log tree commit diff
path: root/src/librustc_codegen_llvm/debuginfo
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2020-03-24 09:09:42 +0100
committerMazdak Farrokhzad <twingoow@gmail.com>2020-03-24 22:47:23 +0100
commit917289907d16e670a38c2f7eaffb46b500127694 (patch)
tree668764ae820602ae4ef0c5560234a3d2fde40f6e /src/librustc_codegen_llvm/debuginfo
parent342c5f33d097b2dc07a2dbc0ca45a37379d2ff60 (diff)
downloadrust-917289907d16e670a38c2f7eaffb46b500127694.tar.gz
rust-917289907d16e670a38c2f7eaffb46b500127694.zip
normalize some imports, prefer direct ones.
Diffstat (limited to 'src/librustc_codegen_llvm/debuginfo')
-rw-r--r--src/librustc_codegen_llvm/debuginfo/namespace.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_codegen_llvm/debuginfo/namespace.rs b/src/librustc_codegen_llvm/debuginfo/namespace.rs
index 55a3540809b..4e507a569dc 100644
--- a/src/librustc_codegen_llvm/debuginfo/namespace.rs
+++ b/src/librustc_codegen_llvm/debuginfo/namespace.rs
@@ -6,8 +6,8 @@ use rustc::ty::{self, Instance};
 use crate::common::CodegenCx;
 use crate::llvm;
 use crate::llvm::debuginfo::DIScope;
-use rustc::hir::map::DefPathData;
 use rustc_hir::def_id::DefId;
+use rustc_hir::definitions::DefPathData;
 
 pub fn mangled_name_of_instance<'a, 'tcx>(
     cx: &CodegenCx<'a, 'tcx>,