diff options
Diffstat (limited to 'compiler/rustc_target/src/callconv/xtensa.rs')
| -rw-r--r-- | compiler/rustc_target/src/callconv/xtensa.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/compiler/rustc_target/src/callconv/xtensa.rs b/compiler/rustc_target/src/callconv/xtensa.rs index 9d313d16500..6c030cb3bf7 100644 --- a/compiler/rustc_target/src/callconv/xtensa.rs +++ b/compiler/rustc_target/src/callconv/xtensa.rs @@ -5,8 +5,9 @@ //! Section 8.1.4 & 8.1.5 of the Xtensa ISA reference manual, as well as snippets from //! Section 2.3 from the Xtensa programmers guide. -use crate::abi::call::{ArgAbi, FnAbi, Reg, Uniform}; -use crate::abi::{BackendRepr, HasDataLayout, Size, TyAbiInterface}; +use rustc_abi::{BackendRepr, HasDataLayout, Size, TyAbiInterface}; + +use crate::callconv::{ArgAbi, FnAbi, Reg, Uniform}; use crate::spec::HasTargetSpec; const NUM_ARG_GPRS: u64 = 6; |
