summaryrefslogtreecommitdiff
path: root/lowlevelilinstruction.h
diff options
context:
space:
mode:
Diffstat (limited to 'lowlevelilinstruction.h')
-rw-r--r--lowlevelilinstruction.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/lowlevelilinstruction.h b/lowlevelilinstruction.h
index c7bbc7f4..53e10b6c 100644
--- a/lowlevelilinstruction.h
+++ b/lowlevelilinstruction.h
@@ -2054,6 +2054,24 @@ namespace BinaryNinja
struct LowLevelILInstructionAccessor<LLIL_NOT> : public LowLevelILOneOperandInstruction
{};
template <>
+ struct LowLevelILInstructionAccessor<LLIL_BSWAP> : public LowLevelILOneOperandInstruction
+ {};
+ template <>
+ struct LowLevelILInstructionAccessor<LLIL_POPCNT> : public LowLevelILOneOperandInstruction
+ {};
+ template <>
+ struct LowLevelILInstructionAccessor<LLIL_CLZ> : public LowLevelILOneOperandInstruction
+ {};
+ template <>
+ struct LowLevelILInstructionAccessor<LLIL_CTZ> : public LowLevelILOneOperandInstruction
+ {};
+ template <>
+ struct LowLevelILInstructionAccessor<LLIL_RBIT> : public LowLevelILOneOperandInstruction
+ {};
+ template <>
+ struct LowLevelILInstructionAccessor<LLIL_CLS> : public LowLevelILOneOperandInstruction
+ {};
+ template <>
struct LowLevelILInstructionAccessor<LLIL_SX> : public LowLevelILOneOperandInstruction
{};
template <>