We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 308ccc0 commit 33cf287Copy full SHA for 33cf287
Python/optimizer.c
@@ -968,7 +968,7 @@ _PyJit_TryInitializeTracing(
968
_PyThreadStateImpl *_tstate = (_PyThreadStateImpl *)tstate;
969
// A recursive trace.
970
// Don't trace into the inner call because it will stomp on the previous trace, causing endless retraces.
971
- if (_tstate->jit_tracer_state.prev_state.code_curr_size > CODE_SIZE_NO_PROGRESS) {
+ if (_tstate->jit_tracer_state.prev_state.code_curr_size > CODE_SIZE_EMPTY) {
972
return 0;
973
}
974
if (oparg > 0xFFFF) {
0 commit comments