summaryrefslogtreecommitdiff
path: root/highlevelilinstruction.h
diff options
context:
space:
mode:
authorMark Rowe <mark@vector35.com>2026-06-04 16:36:52 -0700
committerMark Rowe <mark@vector35.com>2026-06-05 13:01:46 -0700
commitfde1241ce928d38c2031c827ae0ddee5c6f5af0f (patch)
tree6711a47863332712eb5324e2c3ef1dffb843bb5d /highlevelilinstruction.h
parentfa09f36b5f47ed690dc029fe9f1ed9ad4ebce7c8 (diff)
Add abs, min, and max instructions
Diffstat (limited to 'highlevelilinstruction.h')
-rw-r--r--highlevelilinstruction.h15
1 files changed, 15 insertions, 0 deletions
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<HLIL_CLS> : public HighLevelILOneOperandInstruction
{};
template <>
+ struct HighLevelILInstructionAccessor<HLIL_MINS> : public HighLevelILTwoOperandInstruction
+ {};
+ template <>
+ struct HighLevelILInstructionAccessor<HLIL_MAXS> : public HighLevelILTwoOperandInstruction
+ {};
+ template <>
+ struct HighLevelILInstructionAccessor<HLIL_MINU> : public HighLevelILTwoOperandInstruction
+ {};
+ template <>
+ struct HighLevelILInstructionAccessor<HLIL_MAXU> : public HighLevelILTwoOperandInstruction
+ {};
+ template <>
+ struct HighLevelILInstructionAccessor<HLIL_ABS> : public HighLevelILOneOperandInstruction
+ {};
+ template <>
struct HighLevelILInstructionAccessor<HLIL_SX> : public HighLevelILOneOperandInstruction
{};
template <>