summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/lowlevelil.py3
-rw-r--r--python/mediumlevelil.py3
2 files changed, 6 insertions, 0 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index 430e5934..9f23f45b 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -752,6 +752,9 @@ class LowLevelILFunction(object):
func_handle = self.source_function.handle
self.handle = core.BNCreateLowLevelILFunction(arch.handle, func_handle)
+ def __hash__(self):
+ return hash('LLIL') + hash(self.source_function)
+
def __del__(self):
if self.handle is not None:
core.BNFreeLowLevelILFunction(self.handle)
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py
index 0ef09642..e165eaa3 100644
--- a/python/mediumlevelil.py
+++ b/python/mediumlevelil.py
@@ -633,6 +633,9 @@ class MediumLevelILFunction(object):
func_handle = self.source_function.handle
self.handle = core.BNCreateMediumLevelILFunction(arch.handle, func_handle)
+ def __hash__(self):
+ return hash('MLIL') + hash(self.source_function)
+
def __del__(self):
if self.handle is not None:
core.BNFreeMediumLevelILFunction(self.handle)