diff options
| author | Rusty Wagner <rusty@vector35.com> | 2016-05-30 22:40:24 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2016-05-30 22:40:24 -0400 |
| commit | 4dc7c3041e7c95e373b55dbb27b1861e82976fc0 (patch) | |
| tree | 84c56f913999eef22384a65c8343d07f29df17d4 /python | |
| parent | eb2ba156a6dc7654e143d46f79384066a2e5e4a3 (diff) | |
Add IL instruction to promote bool to int, used for MIPS jump tables
Diffstat (limited to 'python')
| -rw-r--r-- | python/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
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")], |
