summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2019-06-11 17:49:27 -0400
committerJordan Wiens <jordan@psifertex.com>2019-06-11 17:49:27 -0400
commit97488505c92afbaebdb572fede4b2afdfce580e1 (patch)
tree539ffa4afdeb2f7899b4802b7cb65697bd631c88 /python/lowlevelil.py
parent609de737864e3768ff35830268c733e6b4ee7ccd (diff)
dest in llil instructions should not always be available
Diffstat (limited to 'python/lowlevelil.py')
-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):
"""