diff options
Diffstat (limited to 'arch/msp430/src/architecture.rs')
| -rw-r--r-- | arch/msp430/src/architecture.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/msp430/src/architecture.rs b/arch/msp430/src/architecture.rs index ccc5ce80..e5815c91 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<Self>, + il: &mut MutableLiftedILFunction, ) -> 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 mut MutableLiftedILFunction<Self>, - ) -> Option<MutableLiftedILExpr<'a, Self, ValueExpr>> { + _il: &'a mut MutableLiftedILFunction, + ) -> Option<MutableLiftedILExpr<'a, ValueExpr>> { None } |
