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 fa45ae8 commit 308ccc0Copy full SHA for 308ccc0
Python/optimizer.c
@@ -619,7 +619,7 @@ _PyJit_translate_single_bytecode_to_trace(
619
620
/* Special case the first instruction,
621
* so that we can guarantee forward progress */
622
- if (progress_needed && _tstate->jit_tracer_state.prev_state.code_curr_size <= CODE_SIZE_NO_PROGRESS) {
+ if (progress_needed && _tstate->jit_tracer_state.prev_state.code_curr_size < CODE_SIZE_NO_PROGRESS) {
623
if (OPCODE_HAS_EXIT(opcode) || OPCODE_HAS_DEOPT(opcode)) {
624
opcode = _PyOpcode_Deopt[opcode];
625
}
0 commit comments