about summary refs log tree commit diff
path: root/compiler/rustc_target/src/callconv/mips.rs
diff options
context:
space:
mode:
authorJubilee Young <workingjubilee@gmail.com>2025-02-04 22:06:41 -0800
committerJubilee Young <workingjubilee@gmail.com>2025-02-07 11:23:12 -0800
commit1f37b9a643c28858cc3fac392483bf3f541182e2 (patch)
treedc528a8b95623c368c3039137aa206093084a43a /compiler/rustc_target/src/callconv/mips.rs
parent3948be651a26d46d50ea45f7b1d90b907519c31a (diff)
downloadrust-1f37b9a643c28858cc3fac392483bf3f541182e2.tar.gz
rust-1f37b9a643c28858cc3fac392483bf3f541182e2.zip
compiler: remove rustc_target::abi entirely
Diffstat (limited to 'compiler/rustc_target/src/callconv/mips.rs')
-rw-r--r--compiler/rustc_target/src/callconv/mips.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_target/src/callconv/mips.rs b/compiler/rustc_target/src/callconv/mips.rs
index f7d68822155..6162267a0d0 100644
--- a/compiler/rustc_target/src/callconv/mips.rs
+++ b/compiler/rustc_target/src/callconv/mips.rs
@@ -1,6 +1,6 @@
 use rustc_abi::{HasDataLayout, Size};
 
-use crate::abi::call::{ArgAbi, FnAbi, Reg, Uniform};
+use crate::callconv::{ArgAbi, FnAbi, Reg, Uniform};
 
 fn classify_ret<Ty, C>(cx: &C, ret: &mut ArgAbi<'_, Ty>, offset: &mut Size)
 where