diff options
| author | bjorn3 <bjorn3@users.noreply.github.com> | 2021-05-29 16:56:15 +0200 |
|---|---|---|
| committer | bjorn3 <bjorn3@users.noreply.github.com> | 2021-06-04 13:20:04 +0200 |
| commit | f8ed66be6b3025073c24028375345d90633b6ced (patch) | |
| tree | f73793b5ad5bc484ecc9abbae904f06348a59b2b /compiler/rustc_codegen_llvm | |
| parent | c1b66379dddddea54236ff9f7e18082c6c1a494f (diff) | |
| download | rust-f8ed66be6b3025073c24028375345d90633b6ced.tar.gz rust-f8ed66be6b3025073c24028375345d90633b6ced.zip | |
Remove unused imports
Diffstat (limited to 'compiler/rustc_codegen_llvm')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_llvm/src/lib.rs b/compiler/rustc_codegen_llvm/src/lib.rs index fe099acc93b..1ee7f214c7c 100644 --- a/compiler/rustc_codegen_llvm/src/lib.rs +++ b/compiler/rustc_codegen_llvm/src/lib.rs @@ -29,8 +29,8 @@ use rustc_codegen_ssa::{CodegenResults, CompiledModule}; use rustc_data_structures::fx::FxHashMap; use rustc_errors::{ErrorReported, FatalError, Handler}; use rustc_middle::dep_graph::{WorkProduct, WorkProductId}; -use rustc_middle::middle::cstore::{EncodedMetadata, MetadataLoaderDyn}; -use rustc_middle::ty::{self, TyCtxt}; +use rustc_middle::middle::cstore::EncodedMetadata; +use rustc_middle::ty::TyCtxt; use rustc_session::config::{OptLevel, OutputFilenames, PrintRequest}; use rustc_session::Session; use rustc_span::symbol::Symbol; |
