Skip to content

Commit 2409b2f

Browse files
committed
address review
1 parent 2c1b5e0 commit 2409b2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/optimizer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -675,6 +675,7 @@ _PyJit_translate_single_bytecode_to_trace(
675675
_Py_CODEUNIT *this_instr = tracer->prev_state.instr;
676676
_Py_CODEUNIT *target_instr = this_instr;
677677
uint32_t target = 0;
678+
int end_trace_opcode = _DEOPT;
678679

679680
target = Py_IsNone((PyObject *)old_code)
680681
? (uint32_t)(target_instr - _Py_INTERPRETER_TRAMPOLINE_INSTRUCTIONS_PTR)
@@ -768,7 +769,6 @@ _PyJit_translate_single_bytecode_to_trace(
768769
goto unsupported;
769770
}
770771

771-
int end_trace_opcode = _DEOPT;
772772
if (oparg > 0xFFFF) {
773773
DPRINTF(2, "Unsupported: oparg too large\n");
774774
unsupported:

0 commit comments

Comments
 (0)