about summary refs log tree commit diff
path: root/compiler/rustc_driver_impl
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-12-01 00:08:04 +0000
committerbors <bors@rust-lang.org>2023-12-01 00:08:04 +0000
commit1d726a2be0b9a762c5a15154e65f925994a58445 (patch)
tree517233274b102db3a76bbb3be781c03183b75602 /compiler/rustc_driver_impl
parentf45631b10f2199a7ef344a936af9eb60342c16ee (diff)
parent275b793c33ef16d873a056cbdb1100ce3f87f7ad (diff)
downloadrust-1d726a2be0b9a762c5a15154e65f925994a58445.tar.gz
rust-1d726a2be0b9a762c5a15154e65f925994a58445.zip
Auto merge of #118472 - nnethercote:rustc_session, r=bjorn3
`rustc_session` cleanups

r? `@bjorn3`
Diffstat (limited to 'compiler/rustc_driver_impl')
-rw-r--r--compiler/rustc_driver_impl/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_driver_impl/src/lib.rs b/compiler/rustc_driver_impl/src/lib.rs
index 6af11ce8479..450e1ead0b2 100644
--- a/compiler/rustc_driver_impl/src/lib.rs
+++ b/compiler/rustc_driver_impl/src/lib.rs
@@ -33,10 +33,10 @@ use rustc_feature::find_gated_cfg;
 use rustc_interface::util::{self, collect_crate_types, get_codegen_backend};
 use rustc_interface::{interface, Queries};
 use rustc_lint::unerased_lint_store;
+use rustc_metadata::creader::MetadataLoader;
 use rustc_metadata::locator;
 use rustc_session::config::{nightly_options, CG_OPTIONS, Z_OPTIONS};
 use rustc_session::config::{ErrorOutputType, Input, OutFileName, OutputType, TrimmedDefPaths};
-use rustc_session::cstore::MetadataLoader;
 use rustc_session::getopts::{self, Matches};
 use rustc_session::lint::{Lint, LintId};
 use rustc_session::{config, EarlyErrorHandler, Session};