mirror of
https://github.com/python/cpython.git
synced 2025-08-24 02:35:59 +00:00
GH-120619: Clean up RETURN_VALUE
instruction (GH-120624)
* Rename _POP_FRAME to _RETURN_VALUE as it returns a value as well as popping a frame. * Remove remaining _POP_FRAMEs
This commit is contained in:
parent
79e09e60d8
commit
274f844830
11 changed files with 67 additions and 61 deletions
2
Python/optimizer_cases.c.h
generated
2
Python/optimizer_cases.c.h
generated
|
@ -558,7 +558,7 @@
|
|||
break;
|
||||
}
|
||||
|
||||
case _POP_FRAME: {
|
||||
case _RETURN_VALUE: {
|
||||
_Py_UopsSymbol *retval;
|
||||
_Py_UopsSymbol *res;
|
||||
retval = stack_pointer[-1];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue