diff options
Diffstat (limited to 'lowlevelil.cpp')
| -rw-r--r-- | lowlevelil.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lowlevelil.cpp b/lowlevelil.cpp index 9cd5b0a1..29614d3e 100644 --- a/lowlevelil.cpp +++ b/lowlevelil.cpp @@ -443,6 +443,13 @@ void LowLevelILFunction::MarkLabel(BNLowLevelILLabel& label) } +ExprId LowLevelILFunction::Operand(uint32_t n, ExprId expr) +{ + BNLowLevelILSetExprSourceOperand(m_object, expr, n); + return expr; +} + + BNLowLevelILInstruction LowLevelILFunction::operator[](size_t i) const { return BNGetLowLevelILByIndex(m_object, i); |
