From d592ed6dafbb134553bf3a0b8ee70ff7f2049aba Mon Sep 17 00:00:00 2001 From: Mark Rowe Date: Wed, 3 Jun 2026 21:25:55 -0700 Subject: Add bswap, popcnt, clz, ctz, cls, and rbit instructions --- lowlevelilinstruction.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'lowlevelilinstruction.h') 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 : public LowLevelILOneOperandInstruction {}; template <> + struct LowLevelILInstructionAccessor : public LowLevelILOneOperandInstruction + {}; + template <> + struct LowLevelILInstructionAccessor : public LowLevelILOneOperandInstruction + {}; + template <> + struct LowLevelILInstructionAccessor : public LowLevelILOneOperandInstruction + {}; + template <> + struct LowLevelILInstructionAccessor : public LowLevelILOneOperandInstruction + {}; + template <> + struct LowLevelILInstructionAccessor : public LowLevelILOneOperandInstruction + {}; + template <> + struct LowLevelILInstructionAccessor : public LowLevelILOneOperandInstruction + {}; + template <> struct LowLevelILInstructionAccessor : public LowLevelILOneOperandInstruction {}; template <> -- cgit v1.3.1