mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
GH-128682: Spill the stack pointer in labels, as well as instructions (GH-129618)
This commit is contained in:
parent
d3c54f3788
commit
2effea4dab
15 changed files with 277 additions and 102 deletions
|
@ -570,7 +570,7 @@ class Storage:
|
|||
assert [v.name for v in inputs] == [v.name for v in self.inputs], (inputs, self.inputs)
|
||||
return Storage(
|
||||
new_stack, inputs,
|
||||
self.copy_list(self.outputs), self.copy_list(self.peeks)
|
||||
self.copy_list(self.outputs), self.copy_list(self.peeks), self.spilled
|
||||
)
|
||||
|
||||
def sanity_check(self) -> None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue