diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/lowlevelil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py index f0a4e2a6..6ed25c80 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -863,13 +863,13 @@ class LowLevelILInstruction(object): def ssa_form(self): """SSA form of expression (read-only)""" return LowLevelILInstruction(self._function.ssa_form, - core.BNGetLowLevelILSSAExprIndex(self._function.handle, self.expr_index)) + core.BNGetLowLevelILSSAExprIndex(self._function.handle, self.expr_index), self._instr_index) @property def non_ssa_form(self): """Non-SSA form of expression (read-only)""" return LowLevelILInstruction(self._function.non_ssa_form, - core.BNGetLowLevelILNonSSAExprIndex(self._function.handle, self.expr_index)) + core.BNGetLowLevelILNonSSAExprIndex(self._function.handle, self.expr_index), self._instr_index) @property def medium_level_il(self): |
