diff options
author | Ken Jin <kenjin@python.org> | 2025-02-18 15:48:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-18 15:48:49 (GMT) |
commit | 46ac85e4d9fcffe1a8f921989414a89648b5501a (patch) | |
tree | 93db42fea4eae69337ab731d02d1fb49e21373e9 /Python/generated_cases.c.h | |
parent | dab456dcefd886bde44eb204dc6f1b2f14de0e9d (diff) | |
download | cpython-46ac85e4d9fcffe1a8f921989414a89648b5501a.zip cpython-46ac85e4d9fcffe1a8f921989414a89648b5501a.tar.gz cpython-46ac85e4d9fcffe1a8f921989414a89648b5501a.tar.bz2 |
gh-129989: Change Py_TAIL_CALL_INTERP ifndef to ! (#130269)
Change Py_TAIL_CALL_INTERP ifndef to !
Diffstat (limited to 'Python/generated_cases.c.h')
-rw-r--r-- | Python/generated_cases.c.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/generated_cases.c.h b/Python/generated_cases.c.h index e7f8fdc..01fa857 100644 --- a/Python/generated_cases.c.h +++ b/Python/generated_cases.c.h @@ -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 |