diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2022-06-02 09:16:45 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2022-06-02 09:16:45 -0400 |
| commit | f65fdfc1dad94ffca1d69c6a6599b3c626b2216b (patch) | |
| tree | f100e41c5102c9c42d329adb1cd86768b0847600 /python/highlevelil.py | |
| parent | b79ee2f007f17d221b8788f54b5d28cd3b19b771 (diff) | |
HLILRet should be a Return, not just ControlFlow
Diffstat (limited to 'python/highlevelil.py')
| -rw-r--r-- | python/highlevelil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/highlevelil.py b/python/highlevelil.py index da055cd4..cd073df6 100644 --- a/python/highlevelil.py +++ b/python/highlevelil.py @@ -41,7 +41,7 @@ from . import variable from .interaction import show_graph_report from .commonil import ( BaseILInstruction, Tailcall, Syscall, Localcall, Comparison, Signed, UnaryOperation, BinaryOperation, SSA, Phi, - Loop, ControlFlow, Memory, Constant, Arithmetic, DoublePrecision, Terminal, FloatingPoint, Intrinsic + Loop, ControlFlow, Memory, Constant, Arithmetic, DoublePrecision, Terminal, FloatingPoint, Intrinsic, Return ) LinesType = Generator['function.DisassemblyTextLine', None, None] @@ -995,7 +995,7 @@ class HighLevelILJump(HighLevelILInstruction, Terminal): @dataclass(frozen=True, repr=False, eq=False) -class HighLevelILRet(HighLevelILInstruction, ControlFlow): +class HighLevelILRet(HighLevelILInstruction, Return): @property def src(self) -> List[HighLevelILInstruction]: return self.get_expr_list(0, 1) |
