summaryrefslogtreecommitdiff
path: root/python/highlevelil.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2021-06-23 09:43:53 -0400
committerPeter LaFosse <peter@vector35.com>2021-09-05 10:08:09 -0400
commit8605213659115157e4ab0bf1c24783c4a896d025 (patch)
tree9a44a23a93cc4bcfc15a714d7289eddef46f962b /python/highlevelil.py
parent6de4900db74a341fddfda46f7cb4342fdc31f8e0 (diff)
Refactor RegisterValue class into multiple dataclasses which can be instantiated directly
Diffstat (limited to 'python/highlevelil.py')
-rw-r--r--python/highlevelil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/highlevelil.py b/python/highlevelil.py
index 831d232d..26ad5045 100644
--- a/python/highlevelil.py
+++ b/python/highlevelil.py
@@ -590,7 +590,7 @@ class HighLevelILInstruction(object):
"""Value of expression if constant or a known value (read-only)"""
mlil = self.mlil
if mlil is None:
- return variable.RegisterValue()
+ return variable.Undetermined()
return mlil.value
@property