summaryrefslogtreecommitdiff
path: root/arch/msp430/src/architecture.rs
diff options
context:
space:
mode:
Diffstat (limited to 'arch/msp430/src/architecture.rs')
-rw-r--r--arch/msp430/src/architecture.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/msp430/src/architecture.rs b/arch/msp430/src/architecture.rs
index 0ef6e449..91826193 100644
--- a/arch/msp430/src/architecture.rs
+++ b/arch/msp430/src/architecture.rs
@@ -20,7 +20,7 @@ use binaryninja::architecture::{
BranchKind, FlagClassId, FlagGroupId, FlagId, FlagWriteId, RegisterId,
};
use binaryninja::low_level_il::expression::ValueExpr;
-use binaryninja::low_level_il::{MutableLiftedILExpr, MutableLiftedILFunction};
+use binaryninja::low_level_il::{LowLevelILMutableExpression, LowLevelILMutableFunction};
use log::error;
const MIN_MNEMONIC: usize = 9;
@@ -194,7 +194,7 @@ impl Architecture for Msp430 {
&self,
data: &[u8],
addr: u64,
- il: &MutableLiftedILFunction,
+ il: &LowLevelILMutableFunction,
) -> Option<(usize, bool)> {
match msp430_asm::decode(data) {
Ok(inst) => {
@@ -226,8 +226,8 @@ impl Architecture for Msp430 {
fn flag_group_llil<'a>(
&self,
_group: Self::FlagGroup,
- _il: &'a MutableLiftedILFunction,
- ) -> Option<MutableLiftedILExpr<'a, ValueExpr>> {
+ _il: &'a LowLevelILMutableFunction,
+ ) -> Option<LowLevelILMutableExpression<'a, ValueExpr>> {
None
}