From 8605213659115157e4ab0bf1c24783c4a896d025 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Wed, 23 Jun 2021 09:43:53 -0400 Subject: Refactor RegisterValue class into multiple dataclasses which can be instantiated directly --- python/highlevelil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/highlevelil.py') 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 -- cgit v1.3.1