summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2021-08-27 13:37:53 -0400
committerPeter LaFosse <peter@vector35.com>2021-09-06 11:46:43 -0400
commited0c7a1183e8a82c3b3130f0b0b89a8270d893cf (patch)
treeca42a6c999c9a8e3be762f220300c294703597a9 /python
parent24a82cb414a85bae23589f182e2315bc1c17a38c (diff)
Fix load/store instruction hierarchy in lowlevelil.py
Diffstat (limited to 'python')
-rw-r--r--python/lowlevelil.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index 4c785e22..ae590c21 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -1176,7 +1176,7 @@ class LowLevelILFtrunc(FloatingPoint, Arithmetic):
@dataclass(frozen=True, repr=False)
-class LowLevelILLoad(Memory):
+class LowLevelILLoad(Load):
operand_names = tuple(["src"])
@property
@@ -1385,7 +1385,7 @@ class LowLevelILSet_flag(LowLevelILInstruction):
@dataclass(frozen=True, repr=False)
-class LowLevelILStore(Memory):
+class LowLevelILStore(Store):
operand_names = tuple(["dest", "src"])
@property