summaryrefslogtreecommitdiff
path: root/arch/riscv/src
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-12-08 19:18:12 -0500
committerMason Reed <35282038+emesare@users.noreply.github.com>2025-12-10 17:35:19 -0500
commit2c7ba495a6c1d8b3639b74334b0cdd1809af807e (patch)
treea83f47d51954ad4abf24c64f6d37465b1ebbc1ea /arch/riscv/src
parentbc195c1c21da0400a1a1dde1fcdde45d687e666f (diff)
[Rust] Remove `UnusedRegisterStackInfo` and update architecture documentation
Diffstat (limited to 'arch/riscv/src')
-rw-r--r--arch/riscv/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/riscv/src/lib.rs b/arch/riscv/src/lib.rs
index 6ce25406..22ecdd6d 100644
--- a/arch/riscv/src/lib.rs
+++ b/arch/riscv/src/lib.rs
@@ -11,7 +11,7 @@ use binaryninja::{
architecture::{
Architecture, ArchitectureExt, CoreArchitecture, CustomArchitectureHandle,
ImplicitRegisterExtend, InstructionInfo, Register as Reg, RegisterInfo, UnusedFlag,
- UnusedRegisterStack, UnusedRegisterStackInfo,
+ UnusedRegisterStack,
},
binary_view::{BinaryView, BinaryViewExt},
calling_convention::{register_calling_convention, CallingConvention, ConventionBuilder},
@@ -644,7 +644,7 @@ impl<D: RiscVDisassembler> Architecture for RiscVArch<D> {
type RegisterInfo = Register<D>;
type Register = Register<D>;
- type RegisterStackInfo = UnusedRegisterStackInfo<Self::Register>;
+ type RegisterStackInfo = UnusedRegisterStack<Self::Register>;
type RegisterStack = UnusedRegisterStack<Self::Register>;
type Flag = UnusedFlag;