diff options
| author | Rusty Wagner <rusty@vector35.com> | 2017-10-23 21:45:37 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2018-03-23 17:10:05 -0400 |
| commit | 092faaff9b3868c8f8eeab13f4506968be6546d1 (patch) | |
| tree | 4fb10f868d93649514319aa2d77bdafb27dd9663 /python/function.py | |
| parent | ceab7825606b37d1dc142f73931660c9600b340d (diff) | |
Top relative register stack access as a normal register
Diffstat (limited to 'python/function.py')
| -rw-r--r-- | python/function.py | 3 |
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): |
