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 --- highlevelilinstruction.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'highlevelilinstruction.h') diff --git a/highlevelilinstruction.h b/highlevelilinstruction.h index 4272d2e2..6eac89da 100644 --- a/highlevelilinstruction.h +++ b/highlevelilinstruction.h @@ -1472,6 +1472,21 @@ namespace BinaryNinja struct HighLevelILInstructionAccessor : public HighLevelILOneOperandInstruction {}; template <> + struct HighLevelILInstructionAccessor : public HighLevelILTwoOperandInstruction + {}; + template <> + struct HighLevelILInstructionAccessor : public HighLevelILTwoOperandInstruction + {}; + template <> + struct HighLevelILInstructionAccessor : public HighLevelILTwoOperandInstruction + {}; + template <> + struct HighLevelILInstructionAccessor : public HighLevelILTwoOperandInstruction + {}; + template <> + struct HighLevelILInstructionAccessor : public HighLevelILOneOperandInstruction + {}; + template <> struct HighLevelILInstructionAccessor : public HighLevelILOneOperandInstruction {}; template <> -- cgit v1.3.1