From 97488505c92afbaebdb572fede4b2afdfce580e1 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Tue, 11 Jun 2019 17:49:27 -0400 Subject: dest in llil instructions should not always be available --- python/lowlevelil.py | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'python') 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): """ -- cgit v1.3.1