From e9604c37df479a991d131d9540fafe78c7a0f7d4 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Thu, 9 Nov 2023 18:39:55 -0500 Subject: Add LLIL/MLIL instructions to describe integer vs. floating point argument usage --- lowlevelilinstruction.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'lowlevelilinstruction.h') diff --git a/lowlevelilinstruction.h b/lowlevelilinstruction.h index 99aba8ad..1e8132ca 100644 --- a/lowlevelilinstruction.h +++ b/lowlevelilinstruction.h @@ -1702,6 +1702,17 @@ namespace BinaryNinja } }; + template <> + struct LowLevelILInstructionAccessor : public LowLevelILInstructionBase + { + LowLevelILInstructionList GetParameterExprs() const { return GetRawOperandAsExprList(0); } + }; + template <> + struct LowLevelILInstructionAccessor : public LowLevelILInstructionBase + { + LowLevelILInstructionList GetParameterExprs() const { return GetRawOperandAsExprList(0); } + }; + template <> struct LowLevelILInstructionAccessor : public LowLevelILInstructionBase { -- cgit v1.3.1