summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2021-11-09 09:03:26 -0500
committerPeter LaFosse <peter@vector35.com>2021-11-10 10:52:49 -0500
commit9ec0b9b5a5b03fcd9201cd9acd649f13c31f24fb (patch)
treeb70d126af074313eb8aedba7a76a08286dc259b4 /python/lowlevelil.py
parentc61d108ad726a713e69e072da736206db4b29e85 (diff)
Fix name collision on 'ILInstruction'
Diffstat (limited to 'python/lowlevelil.py')
-rw-r--r--python/lowlevelil.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index 3bf8a592..49b7a408 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -36,7 +36,7 @@ from . import binaryview
from . import architecture
from . import types
from .interaction import show_graph_report
-from .commonil import (ILInstruction, Constant, BinaryOperation, UnaryOperation, Comparison, SSA,
+from .commonil import (BaseILInstruction, Constant, BinaryOperation, UnaryOperation, Comparison, SSA,
Phi, FloatingPoint, ControlFlow, Terminal, Call, StackOperation, Return,
Signed, Arithmetic, Carry, DoublePrecision, Memory, Load, Store, RegisterStack, SetReg)
@@ -300,7 +300,7 @@ class CoreLowLevelILInstruction:
@dataclass(frozen=True)
-class LowLevelILInstruction(ILInstruction):
+class LowLevelILInstruction(BaseILInstruction):
"""
``class LowLevelILInstruction`` Low Level Intermediate Language Instructions are infinite length tree-based
instructions. Tree-based instructions use infix notation with the left hand operand being the destination operand.