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 47b53d1 commit 2564d41Copy full SHA for 2564d41
Python/optimizer.c
@@ -1130,7 +1130,7 @@ sanity_check(_PyExecutorObject *executor)
1130
}
1131
bool ended = false;
1132
uint32_t i = 0;
1133
- CHECK(executor->trace[0].opcode == _START_EXECUTOR || trace[0].opcode == _COLD_EXIT);
+ CHECK(executor->trace[0].opcode == _START_EXECUTOR || executor->trace[0].opcode == _COLD_EXIT);
1134
for (; i < executor->code_size; i++) {
1135
const _PyUOpInstruction *inst = &executor->trace[i];
1136
uint16_t opcode = inst->opcode;
0 commit comments