about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc
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_gcc
parentb66dfaaa6428314066307cfc76f2f3e140555db8 (diff)
downloadrust-8961616e6004e204327f575081509b049268762b.tar.gz
rust-8961616e6004e204327f575081509b049268762b.zip
Move rustc_middle::middle::cstore to rustc_session.
Diffstat (limited to 'compiler/rustc_codegen_gcc')
-rw-r--r--compiler/rustc_codegen_gcc/src/archive.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/compiler/rustc_codegen_gcc/src/archive.rs b/compiler/rustc_codegen_gcc/src/archive.rs
index d749d763402..11dd6d49aa7 100644
--- a/compiler/rustc_codegen_gcc/src/archive.rs
+++ b/compiler/rustc_codegen_gcc/src/archive.rs
@@ -1,12 +1,11 @@
 use std::fs::File;
 use std::path::{Path, PathBuf};
 
-use rustc_session::Session;
 use rustc_codegen_ssa::back::archive::ArchiveBuilder;
+use rustc_session::Session;
 
 use rustc_data_structures::temp_dir::MaybeTempDir;
-use rustc_middle::middle::cstore::DllImport;
-
+use rustc_session::cstore::DllImport;
 
 struct ArchiveConfig<'a> {
     sess: &'a Session,