Skip to content
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
Fix JIT interpreter
  • Loading branch information
brandtbucher committed May 1, 2025
commit b80bdf8e445e3f45af87d324f7c08c0e6b126c2c
1 change: 1 addition & 0 deletions Python/ceval.c
Original file line number Diff line number Diff line change
Expand Up @@ -1084,6 +1084,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
/* Tier 2 interpreter state */
_PyExecutorObject *current_executor = NULL;
const _PyUOpInstruction *next_uop = NULL;
_PyInterpreterFrame *jit_entry;
#endif
#if Py_TAIL_CALL_INTERP
# if Py_STATS
Expand Down
Loading