We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73832b2 commit a9297a0Copy full SHA for a9297a0
1 file changed
Python/optimizer.c
@@ -1473,10 +1473,10 @@ _PyExecutor_GetColdExecutor(void)
1473
return interp->cold_executor;
1474
}
1475
_PyExecutorObject *cold = allocate_executor(0, 1);
1476
- ((_PyUOpInstruction *)cold->trace)->opcode = _COLD_EXIT;
1477
if (cold == NULL) {
1478
Py_FatalError("Cannot allocate core JIT code");
1479
+ ((_PyUOpInstruction *)cold->trace)->opcode = _COLD_EXIT;
1480
_Py_SetImmortal((PyObject *)cold);
1481
#ifdef _Py_JIT
1482
cold->jit_code = NULL;
0 commit comments