compiler: remove rustc_target::spec::abi reexports

This commit is contained in:
Jubilee Young 2025-02-05 12:22:28 -08:00
parent ca193471b5
commit 54ff6e0ad5
8 changed files with 13 additions and 14 deletions

View file

@ -5,6 +5,7 @@ edition = "2021"
[dependencies]
# tidy-alphabetical-start
rustc_abi = { path = "../rustc_abi" }
rustc_ast = { path = "../rustc_ast" }
rustc_ast_lowering = { path = "../rustc_ast_lowering" }
rustc_ast_passes = { path = "../rustc_ast_passes" }

View file

@ -747,7 +747,7 @@ fn print_crate_info(
}
}
CallingConventions => {
let mut calling_conventions = rustc_target::spec::abi::all_names();
let mut calling_conventions = rustc_abi::all_names();
calling_conventions.sort_unstable();
println_info!("{}", calling_conventions.join("\n"));
}