diff options
Diffstat (limited to 'arch/msp430/src')
| -rw-r--r-- | arch/msp430/src/architecture.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/msp430/src/architecture.rs b/arch/msp430/src/architecture.rs index e5815c91..0ef6e449 100644 --- a/arch/msp430/src/architecture.rs +++ b/arch/msp430/src/architecture.rs @@ -194,7 +194,7 @@ impl Architecture for Msp430 { &self, data: &[u8], addr: u64, - il: &mut MutableLiftedILFunction, + il: &MutableLiftedILFunction, ) -> Option<(usize, bool)> { match msp430_asm::decode(data) { Ok(inst) => { @@ -226,7 +226,7 @@ impl Architecture for Msp430 { fn flag_group_llil<'a>( &self, _group: Self::FlagGroup, - _il: &'a mut MutableLiftedILFunction, + _il: &'a MutableLiftedILFunction, ) -> Option<MutableLiftedILExpr<'a, ValueExpr>> { None } |
