Skip to content
Merged
Show file tree
Hide file tree
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
Tidy up
  • Loading branch information
markshannon committed Jul 8, 2025
commit 73832b244e3f634a4a2589908d53d50305fcb1fc
6 changes: 3 additions & 3 deletions Python/bytecodes.c
Original file line number Diff line number Diff line change
Expand Up @@ -2964,7 +2964,7 @@ dummy_func(
else {
this_instr[1].counter = initial_jump_backoff_counter();
assert(tstate->current_executor == NULL);
tstate->jit_exit = NULL;
assert(executor != tstate->interp->cold_executor);
GOTO_TIER_TWO(executor);
}
}
Expand Down Expand Up @@ -3029,7 +3029,7 @@ dummy_func(
}
DISPATCH_GOTO();
}
tstate->jit_exit = NULL;
assert(executor != tstate->interp->cold_executor);
GOTO_TIER_TWO(executor);
#else
Py_FatalError("ENTER_EXECUTOR is not supported in this build");
Expand Down Expand Up @@ -5238,7 +5238,7 @@ dummy_func(
#endif
}

tier2 op(_EXIT_TRACE, (exit_p/4 -- )) {
tier2 op(_EXIT_TRACE, (exit_p/4 --)) {
_PyExitData *exit = (_PyExitData *)exit_p;
#if defined(Py_DEBUG) && !defined(_Py_JIT)
_Py_CODEUNIT *target = _PyFrame_GetBytecode(frame) + exit->target;
Expand Down
4 changes: 2 additions & 2 deletions Python/generated_cases.c.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Python/optimizer_bytecodes.c
Original file line number Diff line number Diff line change
Expand Up @@ -1031,7 +1031,7 @@ dummy_func(void) {
ctx->done = true;
}

op(_EXIT_TRACE, (exit_p/4 -- )) {
op(_EXIT_TRACE, (exit_p/4 --)) {
(void)exit_p;
ctx->done = true;
}
Expand Down
Loading