diff options
Diffstat (limited to 'python/highlevelil.py')
| -rw-r--r-- | python/highlevelil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/highlevelil.py b/python/highlevelil.py index 4795ff7f..976d23f4 100644 --- a/python/highlevelil.py +++ b/python/highlevelil.py @@ -2067,11 +2067,11 @@ class HighLevelILIntrinsicSsa(HighLevelILInstruction, SSA): @property def dest_memory(self) -> int: - return self.get_int(2) + return self.get_int(3) @property def src_memory(self) -> int: - return self.get_int(3) + return self.get_int(4) @property def detailed_operands(self) -> List[Tuple[str, HighLevelILOperandType, str]]: |
