summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/lowlevelil.py')
-rw-r--r--python/lowlevelil.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index ed1cedd4..40cb964c 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -1422,12 +1422,6 @@ class LowLevelILFunction(object):
core.BNFreeRegisterValue(value)
return result
- def get_ssa_stack_contents(self, memory_index, offset, size):
- value = core.BNGetLowLevelILSSAStackContents(self.handle, memory_index, offset, size)
- result = function.RegisterValue(self.arch, value)
- core.BNFreeRegisterValue(value)
- return result
-
class LowLevelILBasicBlock(basicblock.BasicBlock):
def __init__(self, view, handle, owner):