From 4dc7c3041e7c95e373b55dbb27b1861e82976fc0 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Mon, 30 May 2016 22:40:24 -0400 Subject: Add IL instruction to promote bool to int, used for MIPS jump tables --- python/__init__.py | 1 + 1 file changed, 1 insertion(+) (limited to 'python') diff --git a/python/__init__.py b/python/__init__.py index 6776ef09..75d114cd 100644 --- a/python/__init__.py +++ b/python/__init__.py @@ -3987,6 +3987,7 @@ class LowLevelILInstruction(object): core.LLIL_CMP_SGT: [("left", "expr"), ("right", "expr")], core.LLIL_CMP_UGT: [("left", "expr"), ("right", "expr")], core.LLIL_TEST_BIT: [("left", "expr"), ("right", "expr")], + core.LLIL_BOOL_TO_INT: [("src", "expr")], core.LLIL_SYSCALL: [], core.LLIL_BP: [], core.LLIL_TRAP: [("value", "int")], -- cgit v1.3.1