summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2017-10-30 17:46:49 -0400
committerPeter LaFosse <peter@vector35.com>2017-11-06 16:32:06 -0500
commitecb96a16443a45b0ebd463e831be8ca3be9f7f61 (patch)
treea9f17f7a9b1f1d8533b12a7174008035191dc260 /python/lowlevelil.py
parent185b5608d501807ad8af35055c2a6eb63250be5c (diff)
__hash__ for three types of basic blocks
Diffstat (limited to 'python/lowlevelil.py')
-rw-r--r--python/lowlevelil.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index 75a3f1ad..dfc5af5f 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -1733,6 +1733,9 @@ class LowLevelILBasicBlock(basicblock.BasicBlock):
"""Internal method by super to instantiante child instances"""
return LowLevelILBasicBlock(view, handle, self.il_function)
+ def __hash__(self):
+ return hash((self.start, self.end, self.il_function))
+
def LLIL_TEMP(n):
return n | 0x80000000