summaryrefslogtreecommitdiff
path: root/highlevelilinstruction.h
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2019-07-30 18:21:15 -0400
committerRusty Wagner <rusty@vector35.com>2020-04-17 14:20:36 -0400
commit652dd72149b9c030e438d6de1a03ef54eafd8091 (patch)
tree17e798a8becf6c39d236f31111c136f13b4f49a3 /highlevelilinstruction.h
parent203717232e816d42973f05f1c9fbc950914d71dc (diff)
Add continue HLIL instruction
Diffstat (limited to 'highlevelilinstruction.h')
-rw-r--r--highlevelilinstruction.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/highlevelilinstruction.h b/highlevelilinstruction.h
index 2ec67fd3..faf287cc 100644
--- a/highlevelilinstruction.h
+++ b/highlevelilinstruction.h
@@ -630,6 +630,7 @@ namespace BinaryNinja
template <> struct HighLevelILInstructionAccessor<HLIL_NOP>: public HighLevelILInstructionBase {};
template <> struct HighLevelILInstructionAccessor<HLIL_BREAK>: public HighLevelILInstructionBase {};
+ template <> struct HighLevelILInstructionAccessor<HLIL_CONTINUE>: public HighLevelILInstructionBase {};
template <> struct HighLevelILInstructionAccessor<HLIL_NORET>: public HighLevelILInstructionBase {};
template <> struct HighLevelILInstructionAccessor<HLIL_BP>: public HighLevelILInstructionBase {};
template <> struct HighLevelILInstructionAccessor<HLIL_UNDEF>: public HighLevelILInstructionBase {};