mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
gh-142476: Fix Windows crashing with JIT (GH-143021)
Fix Windows crashing with JIT
This commit is contained in:
parent
ff7f62eb23
commit
9ded3dd4e9
1 changed files with 1 additions and 1 deletions
|
|
@ -188,7 +188,7 @@ _PyOptimizer_Optimize(
|
|||
executor->vm_data.chain_depth = chain_depth;
|
||||
assert(executor->vm_data.valid);
|
||||
_PyExitData *exit = _tstate->jit_tracer_state.initial_state.exit;
|
||||
if (exit != NULL) {
|
||||
if (exit != NULL && !progress_needed) {
|
||||
exit->executor = executor;
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue