Skip to content

Commit ac80cdd

Browse files
Fix up generation
1 parent b577888 commit ac80cdd

File tree

4 files changed

+276
-243
lines changed

4 files changed

+276
-243
lines changed

Python/ceval.c

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1028,11 +1028,15 @@ TAIL_CALL_TARGET(exception_unwind):
10281028
#endif
10291029

10301030
#ifdef Py_TAIL_CALL_INTERP
1031-
#ifdef LLTRACE
1031+
# ifdef IN_TAIL_CALL_INTERP
1032+
DISPATCH();
1033+
# else
1034+
# ifdef LLTRACE
10321035
return _TAIL_CALL_shim(frame, stack_pointer, tstate, next_instr, 0, entry_frame, lltrace);
1033-
#else
1036+
# else
10341037
return _TAIL_CALL_shim(frame, stack_pointer, tstate, next_instr, 0, entry_frame);
1035-
#endif
1038+
# endif
1039+
# endif
10361040
#else
10371041
DISPATCH();
10381042
#endif

Python/generated_cases.c.h

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)