compiler: remove reexports from rustc_target::callconv

This commit is contained in:
Jubilee Young 2025-02-04 22:56:30 -08:00
parent 1f37b9a643
commit eddfe8f503
6 changed files with 14 additions and 15 deletions

View file

@ -2,10 +2,9 @@ use std::str::FromStr;
use std::{fmt, iter};
use rustc_abi::{
AddressSpace, Align, BackendRepr, ExternAbi, HasDataLayout, Scalar, Size, TyAbiInterface,
TyAndLayout,
AddressSpace, Align, BackendRepr, ExternAbi, HasDataLayout, Primitive, Reg, RegKind, Scalar,
Size, TyAbiInterface, TyAndLayout,
};
pub use rustc_abi::{Primitive, Reg, RegKind};
use rustc_macros::HashStable_Generic;
use rustc_span::Symbol;