diff options
| author | Rusty Wagner <rusty.wagner@gmail.com> | 2022-02-04 22:04:52 -0500 |
|---|---|---|
| committer | Rusty Wagner <rusty.wagner@gmail.com> | 2022-06-22 17:38:21 -0400 |
| commit | da250551336d916ad0058bf200e1f0b29ccb2a8f (patch) | |
| tree | ce0bd66003e2eda8f3b8ebc63bc623d265410df5 /highlevelilinstruction.h | |
| parent | 63e72efd13b31c1d2061b978e2a5f4688e7ba4fd (diff) | |
Add unreachable instruction for switch statements with an unreachable default
Diffstat (limited to 'highlevelilinstruction.h')
| -rw-r--r-- | highlevelilinstruction.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/highlevelilinstruction.h b/highlevelilinstruction.h index 9cdb9b1a..97418100 100644 --- a/highlevelilinstruction.h +++ b/highlevelilinstruction.h @@ -1109,6 +1109,9 @@ namespace BinaryNinja template <> struct HighLevelILInstructionAccessor<HLIL_UNIMPL> : public HighLevelILInstructionBase {}; + template <> + struct HighLevelILInstructionAccessor<HLIL_UNREACHABLE> : public HighLevelILInstructionBase + {}; template <> struct HighLevelILInstructionAccessor<HLIL_CONST> : public HighLevelILConstantInstruction |
