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 2c1b5e0 commit 2409b2fCopy full SHA for 2409b2f
Python/optimizer.c
@@ -675,6 +675,7 @@ _PyJit_translate_single_bytecode_to_trace(
675
_Py_CODEUNIT *this_instr = tracer->prev_state.instr;
676
_Py_CODEUNIT *target_instr = this_instr;
677
uint32_t target = 0;
678
+ int end_trace_opcode = _DEOPT;
679
680
target = Py_IsNone((PyObject *)old_code)
681
? (uint32_t)(target_instr - _Py_INTERPRETER_TRAMPOLINE_INSTRUCTIONS_PTR)
@@ -768,7 +769,6 @@ _PyJit_translate_single_bytecode_to_trace(
768
769
goto unsupported;
770
}
771
- int end_trace_opcode = _DEOPT;
772
if (oparg > 0xFFFF) {
773
DPRINTF(2, "Unsupported: oparg too large\n");
774
unsupported:
0 commit comments