diff options
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/msp430/src/architecture.rs | 4 | ||||
| -rw-r--r-- | arch/riscv/src/lib.rs | 2 |
2 files changed, 3 insertions, 3 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 } diff --git a/arch/riscv/src/lib.rs b/arch/riscv/src/lib.rs index f43f9bd3..4e9e4783 100644 --- a/arch/riscv/src/lib.rs +++ b/arch/riscv/src/lib.rs @@ -1062,7 +1062,7 @@ impl<D: RiscVDisassembler> Architecture for RiscVArch<D> { &self, data: &[u8], addr: u64, - il: &mut MutableLiftedILFunction, + il: &MutableLiftedILFunction, ) -> Option<(usize, bool)> { let max_width = self.default_integer_size(); |
