summaryrefslogtreecommitdiff
path: root/python/mediumlevelil.py
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2018-01-16 16:25:30 -0500
committerPeter LaFosse <peter@vector35.com>2018-03-23 17:10:06 -0400
commit95a3c711722901c347ddbfa922734ed15f04d62f (patch)
treede0d68ef6f1784a68e03ffed6fe499e06e8f789e /python/mediumlevelil.py
parentd788badbbd0744a623da4fd97aaa539d2726a00b (diff)
Add classes and groups for semantic flags resolution
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 85feba0a..8594ea36 100644
--- a/python/mediumlevelil.py
+++ b/python/mediumlevelil.py
@@ -169,6 +169,7 @@ class MediumLevelILInstruction(object):
MediumLevelILOperation.MLIL_FCMP_LE: [("left", "expr"), ("right", "expr")],
MediumLevelILOperation.MLIL_FCMP_GE: [("left", "expr"), ("right", "expr")],
MediumLevelILOperation.MLIL_FCMP_GT: [("left", "expr"), ("right", "expr")],
+ MediumLevelILOperation.MLIL_FCMP_O: [("left", "expr"), ("right", "expr")],
MediumLevelILOperation.MLIL_FCMP_UO: [("left", "expr"), ("right", "expr")],
MediumLevelILOperation.MLIL_SET_VAR_SSA: [("dest", "var_ssa"), ("src", "expr")],
MediumLevelILOperation.MLIL_SET_VAR_SSA_FIELD: [("prev", "var_ssa_dest_and_src"), ("offset", "int"), ("src", "expr")],