From 08e34ac325743085911f96b62c81d9a1f2127806 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Mon, 27 Apr 2026 16:39:21 -0400 Subject: Extend MLIL call instruction outputs to be expressions --- highlevelilinstruction.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'highlevelilinstruction.cpp') diff --git a/highlevelilinstruction.cpp b/highlevelilinstruction.cpp index 7f4bad39..f155ce03 100644 --- a/highlevelilinstruction.cpp +++ b/highlevelilinstruction.cpp @@ -477,6 +477,16 @@ HighLevelILInstructionList::operator vector() const } +HighLevelILInstructionList::operator vector() const +{ + vector result; + result.reserve(size()); + for (auto i : *this) + result.push_back(i.exprIndex); + return result; +} + + const SSAVariable HighLevelILSSAVariableList::ListIterator::operator*() { HighLevelILIntegerList::const_iterator cur = pos; -- cgit v1.3.1