summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/lowlevelil.py11
1 files changed, 1 insertions, 10 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index 472dac10..dc679e9f 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -694,7 +694,7 @@ class LowLevelILInstruction(object):
value = SSARegisterStack(reg_stack, instr.operands[i])
i += 1
self._operands.append(value)
- self._dest = value
+ self.dest = value
value = SSARegisterStack(reg_stack, instr.operands[i])
elif operand_type == "flag":
value = ILFlag(func.arch, instr.operands[i])
@@ -1074,15 +1074,6 @@ class LowLevelILInstruction(object):
def operands(self, value):
self._operands = value
- @property
- def dest(self):
- """ """
- return self._dest
-
- @dest.setter
- def dest(self, value):
- self._dest = value
-
class LowLevelILExpr(object):
"""