summaryrefslogtreecommitdiff
path: root/python/highlevelil.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2021-09-05 12:31:47 -0400
committerPeter LaFosse <peter@vector35.com>2021-09-06 11:46:44 -0400
commit9fff4bb84db93a7b11a8537a1cc0293c542132d0 (patch)
treef77e49dff085f14e6263de5262602cf4baa8df2c /python/highlevelil.py
parent7070c4efa14e8816d5c429c5c92bf1ad9a4f30eb (diff)
Fix IL comparision instructions
Diffstat (limited to 'python/highlevelil.py')
-rw-r--r--python/highlevelil.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/python/highlevelil.py b/python/highlevelil.py
index 05de45de..53678cce 100644
--- a/python/highlevelil.py
+++ b/python/highlevelil.py
@@ -298,27 +298,27 @@ class HighLevelILInstruction:
return f"<{self.operation.name}: {first_line}{continuation}>"
def __eq__(self, other:'HighLevelILInstruction'):
- if not isinstance(other, self.__class__):
+ if not isinstance(other, HighLevelILInstruction):
return NotImplemented
return self.function == other.function and self.expr_index == other.expr_index
def __lt__(self, other:'HighLevelILInstruction'):
- if not isinstance(other, self.__class__):
+ if not isinstance(other, HighLevelILInstruction):
return NotImplemented
return self.function == other.function and self.expr_index < other.expr_index
def __le__(self, other:'HighLevelILInstruction'):
- if not isinstance(other, self.__class__):
+ if not isinstance(other, HighLevelILInstruction):
return NotImplemented
return self.function == other.function and self.expr_index <= other.expr_index
def __gt__(self, other:'HighLevelILInstruction'):
- if not isinstance(other, self.__class__):
+ if not isinstance(other, HighLevelILInstruction):
return NotImplemented
return self.function == other.function and self.expr_index > other.expr_index
def __ge__(self, other:'HighLevelILInstruction'):
- if not isinstance(other, self.__class__):
+ if not isinstance(other, HighLevelILInstruction):
return NotImplemented
return self.function == other.function and self.expr_index >= other.expr_index