about summary refs log tree commit diff
path: root/compiler/rustc_target/src/callconv
diff options
context:
space:
mode:
authorJubilee Young <workingjubilee@gmail.com>2025-02-04 22:56:30 -0800
committerJubilee Young <workingjubilee@gmail.com>2025-02-07 11:25:18 -0800
commiteddfe8f503ab0dcfb5d26dca472e586f31b82a5a (patch)
tree2ffcb9814e7ada02d3c64589b21ec7d2060d2149 /compiler/rustc_target/src/callconv
parent1f37b9a643c28858cc3fac392483bf3f541182e2 (diff)
downloadrust-eddfe8f503ab0dcfb5d26dca472e586f31b82a5a.tar.gz
rust-eddfe8f503ab0dcfb5d26dca472e586f31b82a5a.zip
compiler: remove reexports from rustc_target::callconv
Diffstat (limited to 'compiler/rustc_target/src/callconv')
-rw-r--r--compiler/rustc_target/src/callconv/mod.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/compiler/rustc_target/src/callconv/mod.rs b/compiler/rustc_target/src/callconv/mod.rs
index 9e651376cd7..50ac6c8fcde 100644
--- a/compiler/rustc_target/src/callconv/mod.rs
+++ b/compiler/rustc_target/src/callconv/mod.rs
@@ -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;