summaryrefslogtreecommitdiff
path: root/python/mediumlevelil.py
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2017-07-24 20:10:18 -0400
committerRusty Wagner <rusty@vector35.com>2017-07-24 20:10:18 -0400
commit111add984b0a517966f133ae69c51d2084dee985 (patch)
tree72af9e99dc062a395a7ffa5435af17481325d8c9 /python/mediumlevelil.py
parent23091d4734fede77b4da90bc14d5ba2e49b33fc2 (diff)
Adding size of stack var refs, source operand in MLIL
Diffstat (limited to 'python/mediumlevelil.py')
-rw-r--r--python/mediumlevelil.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py
index ba83f7aa..3377ab6a 100644
--- a/python/mediumlevelil.py
+++ b/python/mediumlevelil.py
@@ -174,6 +174,7 @@ class MediumLevelILInstruction(object):
self.operation = MediumLevelILOperation(instr.operation)
self.size = instr.size
self.address = instr.address
+ self.source_operand = instr.sourceOperand
operands = MediumLevelILInstruction.ILOperations[instr.operation]
self.operands = []
i = 0