diff options
| author | Peter LaFosse <peter@vector35.com> | 2022-02-23 09:54:58 -0500 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2022-02-23 09:54:58 -0500 |
| commit | c6acf248ede74140d58ad8f0d9cd802943e54fdc (patch) | |
| tree | d6b9cfced8fe1ce841239f3ea2e17d91efefbe6f /python/lowlevelil.py | |
| parent | 0a4ed99e02766338d4d04f98aacb6578e863dc2b (diff) | |
Fix LowLevelILFcmp instruction inheritance
Diffstat (limited to 'python/lowlevelil.py')
| -rw-r--r-- | python/lowlevelil.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py index 067c937f..1d7e9273 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -1026,7 +1026,7 @@ class LowLevelILBinaryBase(LowLevelILInstruction, BinaryOperation): @dataclass(frozen=True, repr=False, eq=False) -class LowLevelILComparisonBase(LowLevelILBinaryBase): +class LowLevelILComparisonBase(LowLevelILBinaryBase, Comparison): pass @@ -1844,42 +1844,42 @@ class LowLevelILFdiv(LowLevelILBinaryBase, Arithmetic, FloatingPoint): @dataclass(frozen=True, repr=False, eq=False) -class LowLevelILFcmpE(LowLevelILInstruction, Comparison, FloatingPoint): +class LowLevelILFcmpE(LowLevelILComparisonBase, FloatingPoint): pass @dataclass(frozen=True, repr=False, eq=False) -class LowLevelILFcmpNe(LowLevelILInstruction, Comparison, FloatingPoint): +class LowLevelILFcmpNe(LowLevelILComparisonBase, FloatingPoint): pass @dataclass(frozen=True, repr=False, eq=False) -class LowLevelILFcmpLt(LowLevelILInstruction, Comparison, FloatingPoint): +class LowLevelILFcmpLt(LowLevelILComparisonBase, FloatingPoint): pass @dataclass(frozen=True, repr=False, eq=False) -class LowLevelILFcmpLe(LowLevelILInstruction, Comparison, FloatingPoint): +class LowLevelILFcmpLe(LowLevelILComparisonBase, FloatingPoint): pass @dataclass(frozen=True, repr=False, eq=False) -class LowLevelILFcmpGe(LowLevelILInstruction, Comparison, FloatingPoint): +class LowLevelILFcmpGe(LowLevelILComparisonBase, FloatingPoint): pass @dataclass(frozen=True, repr=False, eq=False) -class LowLevelILFcmpGt(LowLevelILInstruction, Comparison, FloatingPoint): +class LowLevelILFcmpGt(LowLevelILComparisonBase, FloatingPoint): pass @dataclass(frozen=True, repr=False, eq=False) -class LowLevelILFcmpO(LowLevelILInstruction, Comparison, FloatingPoint): +class LowLevelILFcmpO(LowLevelILComparisonBase, FloatingPoint): pass @dataclass(frozen=True, repr=False, eq=False) -class LowLevelILFcmpUo(LowLevelILInstruction, Comparison, FloatingPoint): +class LowLevelILFcmpUo(LowLevelILComparisonBase, FloatingPoint): pass |
