From 620dd96217a49803fe04c6bc286291ddd857dcba Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Sat, 3 Aug 2019 22:40:57 -0400 Subject: Expand support for HLIL switch/case and data flow access --- lowlevelilinstruction.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lowlevelilinstruction.cpp') diff --git a/lowlevelilinstruction.cpp b/lowlevelilinstruction.cpp index 18c9e769..f55d15f0 100644 --- a/lowlevelilinstruction.cpp +++ b/lowlevelilinstruction.cpp @@ -1613,9 +1613,9 @@ RegisterValue LowLevelILInstructionBase::GetValue() const } -PossibleValueSet LowLevelILInstructionBase::GetPossibleValues() const +PossibleValueSet LowLevelILInstructionBase::GetPossibleValues(const set& options) const { - return function->GetPossibleExprValues(*(const LowLevelILInstruction*)this); + return function->GetPossibleExprValues(*(const LowLevelILInstruction*)this, options); } -- cgit v1.3.1