summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/lowlevelil.py')
-rw-r--r--python/lowlevelil.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index 64a862d6..396f3925 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -1028,6 +1028,8 @@ class LowLevelILInstruction(object):
@property
def high_level_il(self):
"""Gets the high level IL expression corresponding to this expression (may be None for eliminated instructions)"""
+ if self.mlil is None:
+ return None
return self.mlil.hlil
@property