diff options
| author | Peter LaFosse <peter@vector35.com> | 2021-11-09 09:03:26 -0500 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2021-11-10 10:52:49 -0500 |
| commit | 9ec0b9b5a5b03fcd9201cd9acd649f13c31f24fb (patch) | |
| tree | b70d126af074313eb8aedba7a76a08286dc259b4 /python/highlevelil.py | |
| parent | c61d108ad726a713e69e072da736206db4b29e85 (diff) | |
Fix name collision on 'ILInstruction'
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 44985fd4..4beeb789 100644 --- a/python/highlevelil.py +++ b/python/highlevelil.py @@ -39,7 +39,7 @@ from . import flowgraph from . import variable from .log import log_info from .interaction import show_graph_report -from .commonil import (ILInstruction, Call, Tailcall, Syscall, Comparison, Signed, UnaryOperation, BinaryOperation, +from .commonil import (BaseILInstruction, Call, Tailcall, Syscall, Comparison, Signed, UnaryOperation, BinaryOperation, SSA, Phi, Loop, ControlFlow, Memory, Constant, Arithmetic, DoublePrecision, Terminal, FloatingPoint) @@ -130,7 +130,7 @@ class CoreHighLevelILInstruction: @dataclass(frozen=True) -class HighLevelILInstruction(ILInstruction): +class HighLevelILInstruction(BaseILInstruction): """ ``class HighLevelILInstruction`` High Level Intermediate Language Instructions form an abstract syntax tree of the code. Control flow structures are present as high level constructs in the HLIL tree. |
