mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
gh-129989: Change Py_TAIL_CALL_INTERP ifndef to ! (#130269)
Change Py_TAIL_CALL_INTERP ifndef to !
This commit is contained in:
parent
dab456dcef
commit
46ac85e4d9
4 changed files with 7 additions and 7 deletions
6
Python/generated_cases.c.h
generated
6
Python/generated_cases.c.h
generated
|
@ -8,7 +8,7 @@
|
|||
#endif
|
||||
#define TIER_ONE 1
|
||||
|
||||
#ifndef Py_TAIL_CALL_INTERP
|
||||
#if !Py_TAIL_CALL_INTERP
|
||||
#if !USE_COMPUTED_GOTOS
|
||||
dispatch_opcode:
|
||||
switch (opcode)
|
||||
|
@ -4409,7 +4409,7 @@
|
|||
last_sent_val = stack_pointer[-2];
|
||||
sub_iter = stack_pointer[-3];
|
||||
PyObject *exc_value = PyStackRef_AsPyObjectBorrow(exc_value_st);
|
||||
#ifndef Py_TAIL_CALL_INTERP
|
||||
#if !Py_TAIL_CALL_INTERP
|
||||
assert(throwflag);
|
||||
#endif
|
||||
assert(exc_value && PyExceptionInstance_Check(exc_value));
|
||||
|
@ -11929,7 +11929,7 @@
|
|||
}
|
||||
|
||||
/* END INSTRUCTIONS */
|
||||
#ifndef Py_TAIL_CALL_INTERP
|
||||
#if !Py_TAIL_CALL_INTERP
|
||||
#if USE_COMPUTED_GOTOS
|
||||
_unknown_opcode:
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue