about summary refs log tree commit diff
path: root/src/librustc_codegen_llvm
diff options
context:
space:
mode:
authorcsmoe <csmoe@msn.com>2019-09-26 05:30:10 +0000
committercsmoe <csmoe@msn.com>2019-09-29 16:11:30 +0000
commitd20183dbbff4b59da48aedf28e1eb38f55681b58 (patch)
treecb6b2f8a50e43b2f73b8c3243376850c0c0398bb /src/librustc_codegen_llvm
parent17990637b3e4e17fd5fcd3a94bf03963c38b5753 (diff)
downloadrust-d20183dbbff4b59da48aedf28e1eb38f55681b58.tar.gz
rust-d20183dbbff4b59da48aedf28e1eb38f55681b58.zip
remove bit_set re-export from rustc_data_structures
Diffstat (limited to 'src/librustc_codegen_llvm')
-rw-r--r--src/librustc_codegen_llvm/Cargo.toml1
-rw-r--r--src/librustc_codegen_llvm/debuginfo/create_scope_map.rs2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/librustc_codegen_llvm/Cargo.toml b/src/librustc_codegen_llvm/Cargo.toml
index 98efa6a5804..540ab2a352a 100644
--- a/src/librustc_codegen_llvm/Cargo.toml
+++ b/src/librustc_codegen_llvm/Cargo.toml
@@ -12,6 +12,7 @@ test = false
 
 [dependencies]
 rustc_llvm = { path = "../librustc_llvm" }
+rustc_index = { path = "../librustc_index" }
 
 [features]
 # This is used to convince Cargo to separately cache builds of `rustc_codegen_llvm`
diff --git a/src/librustc_codegen_llvm/debuginfo/create_scope_map.rs b/src/librustc_codegen_llvm/debuginfo/create_scope_map.rs
index 8b3ed5b0c62..45af55a7be7 100644
--- a/src/librustc_codegen_llvm/debuginfo/create_scope_map.rs
+++ b/src/librustc_codegen_llvm/debuginfo/create_scope_map.rs
@@ -11,7 +11,7 @@ use libc::c_uint;
 
 use syntax_pos::Pos;
 
-use rustc_data_structures::bit_set::BitSet;
+use rustc_index::bit_set::BitSet;
 use rustc_data_structures::indexed_vec::{Idx, IndexVec};
 
 use syntax_pos::BytePos;