From ed0c7a1183e8a82c3b3130f0b0b89a8270d893cf Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Fri, 27 Aug 2021 13:37:53 -0400 Subject: Fix load/store instruction hierarchy in lowlevelil.py --- python/lowlevelil.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python') 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 -- cgit v1.3.1