diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2019-08-23 07:37:32 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2019-08-23 07:37:32 -0400 |
| commit | bb3592d017114015e4d37457b9581c542340d25a (patch) | |
| tree | 258523c1a64e3c740dba80a925a93e06f71f69b1 /python | |
| parent | 9274adf85554aaedd12d8fb2f9f847555c2c52e3 (diff) | |
fix typo in registerstackinfo repr
Diffstat (limited to 'python')
| -rw-r--r-- | python/function.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/function.py b/python/function.py index 0bac5e23..6330f656 100644 --- a/python/function.py +++ b/python/function.py @@ -2531,7 +2531,7 @@ class RegisterStackInfo(object): self._index = index def __repr__(self): - return "<reg stack: %d regs, stack top in %s>" % (len(self._jstorage_regs), self._stack_top_reg) + return "<reg stack: %d regs, stack top in %s>" % (len(self._storage_regs), self._stack_top_reg) @property def storage_regs(self): |
