8000 gh-129819: Allow tier2/JIT and tailcall by Fidget-Spinner · Pull Request #129820 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-129819: Allow tier2/JIT and tailcall #129820

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Feb 12, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update ceval_macros.h
  • Loading branch information
Fidget-Spinner committed Feb 11, 2025
commit 230d497620d73e17a099326f7e54078e91254e5a
2 changes: 1 addition & 1 deletion Python/ceval_macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ _PyFrame_SetStackPointer(frame, stack_pointer)
/* Tier-switching macros. */

#ifdef _Py_JIT
#ifdef Py_TAIL_CALL_INTERP
#if Py_TAIL_CALL_INTERP
#define GOTO_TIER_TWO(EXECUTOR) \
do { \
OPT_STAT_INC(traces_executed); \
Expand Down
0