about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src
diff options
context:
space:
mode:
authorCamille GILLOT <gillot.camille@gmail.com>2020-11-14 03:02:03 +0100
committerCamille GILLOT <gillot.camille@gmail.com>2021-10-03 16:08:51 +0200
commit8961616e6004e204327f575081509b049268762b (patch)
tree06316b86ee9c02ab0c55aee421c98d9dff7b24cc /compiler/rustc_codegen_llvm/src
parentb66dfaaa6428314066307cfc76f2f3e140555db8 (diff)
downloadrust-8961616e6004e204327f575081509b049268762b.tar.gz
rust-8961616e6004e204327f575081509b049268762b.zip
Move rustc_middle::middle::cstore to rustc_session.
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
-rw-r--r--compiler/rustc_codegen_llvm/src/back/archive.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/back/archive.rs b/compiler/rustc_codegen_llvm/src/back/archive.rs
index 4e86946219f..ebc3b704158 100644
--- a/compiler/rustc_codegen_llvm/src/back/archive.rs
+++ b/compiler/rustc_codegen_llvm/src/back/archive.rs
@@ -11,7 +11,7 @@ use crate::llvm::archive_ro::{ArchiveRO, Child};
 use crate::llvm::{self, ArchiveKind, LLVMMachineType, LLVMRustCOFFShortExport};
 use rustc_codegen_ssa::back::archive::ArchiveBuilder;
 use rustc_data_structures::temp_dir::MaybeTempDir;
-use rustc_middle::middle::cstore::{DllCallingConvention, DllImport};
+use rustc_session::cstore::{DllCallingConvention, DllImport};
 use rustc_session::Session;
 
 struct ArchiveConfig<'a> {