summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2017-06-06 12:49:11 -0400
committerPeter LaFosse <peter@vector35.com>2017-06-06 12:49:11 -0400
commit4de25b0c1eecb50f137f2623793d1dea0081e8a0 (patch)
tree14375169313684fef17197d6a0a430e18c4c5ede /python/lowlevelil.py
parentc48c3a7597f6bb7b8064107f1fbf908464276f11 (diff)
Adding missing X_ADD_OVERFLOW ILOperation
Diffstat (limited to 'python/lowlevelil.py')
-rw-r--r--python/lowlevelil.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index d1a76a2a..dfa7aaf6 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -175,6 +175,7 @@ class LowLevelILInstruction(object):
LowLevelILOperation.LLIL_CMP_UGT: [("left", "expr"), ("right", "expr")],
LowLevelILOperation.LLIL_TEST_BIT: [("left", "expr"), ("right", "expr")],
LowLevelILOperation.LLIL_BOOL_TO_INT: [("src", "expr")],
+ LowLevelILOperation.LLIL_ADD_OVERFLOW: [("left", "expr"), ("right", "expr")],
LowLevelILOperation.LLIL_SYSCALL: [],
LowLevelILOperation.LLIL_BP: [],
LowLevelILOperation.LLIL_TRAP: [("vector", "int")],