summaryrefslogtreecommitdiff
path: root/python/function.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/function.py')
-rw-r--r--python/function.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/python/function.py b/python/function.py
index 13979e37..8e058368 100644
--- a/python/function.py
+++ b/python/function.py
@@ -1788,8 +1788,9 @@ class RegisterInfo(object):
class RegisterStackInfo(object):
- def __init__(self, storage_regs, stack_top_reg):
+ def __init__(self, storage_regs, top_relative_regs, stack_top_reg):
self.storage_regs = storage_regs
+ self.top_relative_regs = top_relative_regs
self.stack_top_reg = stack_top_reg
def __repr__(self):