diff options
| author | Peter LaFosse <peter@vector35.com> | 2022-01-20 13:17:41 -0500 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2022-01-20 13:17:41 -0500 |
| commit | d7dae709f93ef24516ae2db2f1f0d0ee333764f5 (patch) | |
| tree | 548ff46b743ca644ff16007b9411539e01ffdd3b /python/variable.py | |
| parent | 65c1ab279b34f11070a450de993886df9c7353ec (diff) | |
Rework IL inheritance for Call instructions
Diffstat (limited to 'python/variable.py')
| -rw-r--r-- | python/variable.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/variable.py b/python/variable.py index a13dbc59..3862d95b 100644 --- a/python/variable.py +++ b/python/variable.py @@ -752,7 +752,7 @@ class Variable(CoreVariable): core.BNFreeILInstructionList(versions) @property - def dead_store_elimination(self): + def dead_store_elimination(self) -> DeadStoreElimination: return DeadStoreElimination(core.BNGetFunctionVariableDeadStoreElimination(self._function.handle, self.to_BNVariable())) @dead_store_elimination.setter |
