mirror of
https://github.com/python/cpython.git
synced 2025-10-14 02:43:49 +00:00
gh-125470: Fix warning in Python/generated_cases.c.h
(#125471)
Co-authored-by: Kirill Podoprigora <kirill.bast9@mail.ru>
This commit is contained in:
parent
843d28f59d
commit
0c8c665581
3 changed files with 6 additions and 0 deletions
2
Python/executor_cases.c.h
generated
2
Python/executor_cases.c.h
generated
|
@ -737,7 +737,9 @@
|
|||
_PyStackRef left;
|
||||
right = stack_pointer[-1];
|
||||
left = stack_pointer[-2];
|
||||
#ifndef NDEBUG
|
||||
PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);
|
||||
#endif
|
||||
PyObject *right_o = PyStackRef_AsPyObjectBorrow(right);
|
||||
int next_oparg;
|
||||
#if TIER_ONE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue