From fde1241ce928d38c2031c827ae0ddee5c6f5af0f Mon Sep 17 00:00:00 2001 From: Mark Rowe Date: Thu, 4 Jun 2026 16:36:52 -0700 Subject: Add abs, min, and max instructions --- lowlevelilinstruction.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'lowlevelilinstruction.h') diff --git a/lowlevelilinstruction.h b/lowlevelilinstruction.h index 53e10b6c..0234ed7f 100644 --- a/lowlevelilinstruction.h +++ b/lowlevelilinstruction.h @@ -2072,6 +2072,21 @@ namespace BinaryNinja struct LowLevelILInstructionAccessor : public LowLevelILOneOperandInstruction {}; template <> + struct LowLevelILInstructionAccessor : public LowLevelILTwoOperandInstruction + {}; + template <> + struct LowLevelILInstructionAccessor : public LowLevelILTwoOperandInstruction + {}; + template <> + struct LowLevelILInstructionAccessor : public LowLevelILTwoOperandInstruction + {}; + template <> + struct LowLevelILInstructionAccessor : public LowLevelILTwoOperandInstruction + {}; + template <> + struct LowLevelILInstructionAccessor : public LowLevelILOneOperandInstruction + {}; + template <> struct LowLevelILInstructionAccessor : public LowLevelILOneOperandInstruction {}; template <> -- cgit v1.3.1