diff options
| author | Jubilee <workingjubilee@gmail.com> | 2025-02-08 20:41:21 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-08 20:41:21 -0800 |
| commit | 5e4d6278af5ca9a95401d8efbec93954608d396a (patch) | |
| tree | ea0f5cf14c587a6c4f2e1789a469078609846db9 /compiler/rustc_interface/src | |
| parent | e7ad8cec96e8abca6d9fd9f048f1737cc91226a1 (diff) | |
| parent | 221416deeaa5260a74c78987f998bd57f7002107 (diff) | |
| download | rust-5e4d6278af5ca9a95401d8efbec93954608d396a.tar.gz rust-5e4d6278af5ca9a95401d8efbec93954608d396a.zip | |
Rollup merge of #136706 - workingjubilee:finish-up-rustc-abi-updates, r=compiler-errors
compiler: mostly-finish `rustc_abi` updates This almost-finishes all the updates in the compiler to use `rustc_abi` and removes some of the reexports of `rustc_abi` items in `rustc_target` that were previously available. r? ```@compiler-errors```
Diffstat (limited to 'compiler/rustc_interface/src')
| -rw-r--r-- | compiler/rustc_interface/src/tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/tests.rs b/compiler/rustc_interface/src/tests.rs index 46d6f37a91c..a5a11cf776b 100644 --- a/compiler/rustc_interface/src/tests.rs +++ b/compiler/rustc_interface/src/tests.rs @@ -4,6 +4,7 @@ use std::num::NonZero; use std::path::{Path, PathBuf}; use std::sync::atomic::AtomicBool; +use rustc_abi::Align; use rustc_data_structures::profiling::TimePassesFormat; use rustc_errors::emitter::HumanReadableErrorType; use rustc_errors::{ColorConfig, registry}; @@ -24,7 +25,6 @@ use rustc_session::{CompilerIO, EarlyDiagCtxt, Session, build_session, filesearc use rustc_span::edition::{DEFAULT_EDITION, Edition}; use rustc_span::source_map::{RealFileLoader, SourceMapInputs}; use rustc_span::{FileName, SourceFileHashAlgorithm, sym}; -use rustc_target::abi::Align; use rustc_target::spec::{ CodeModel, FramePointer, LinkerFlavorCli, MergeFunctions, OnBrokenPipe, PanicStrategy, RelocModel, RelroLevel, SanitizerSet, SplitDebuginfo, StackProtector, TlsModel, WasmCAbi, |
