diff options
| author | Rusty Wagner <rusty@vector35.com> | 2019-07-30 18:21:15 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2020-04-17 14:20:36 -0400 |
| commit | 652dd72149b9c030e438d6de1a03ef54eafd8091 (patch) | |
| tree | 17e798a8becf6c39d236f31111c136f13b4f49a3 /python | |
| parent | 203717232e816d42973f05f1c9fbc950914d71dc (diff) | |
Add continue HLIL instruction
Diffstat (limited to 'python')
| -rw-r--r-- | python/highlevelil.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/highlevelil.py b/python/highlevelil.py index d657ddc4..46fbe972 100644 --- a/python/highlevelil.py +++ b/python/highlevelil.py @@ -87,6 +87,7 @@ class HighLevelILInstruction(object): HighLevelILOperation.HLIL_SWITCH: [("condition", "expr"), ("default", "expr"), ("cases", "expr_list")], HighLevelILOperation.HLIL_CASE: [("condition", "expr"), ("body", "expr")], HighLevelILOperation.HLIL_BREAK: [], + HighLevelILOperation.HLIL_CONTINUE: [], HighLevelILOperation.HLIL_JUMP: [("dest", "expr")], HighLevelILOperation.HLIL_RET: [("src", "expr_list")], HighLevelILOperation.HLIL_NORET: [], |
