Skip to content
Merged
Prev Previous commit
typo
  • Loading branch information
brandtbucher committed Aug 1, 2024
commit d4df441468362b4514f79cf7bc4d954044cdc14b
2 changes: 1 addition & 1 deletion Python/optimizer.c
Original file line number Diff line number Diff line change
Expand Up @@ -1210,7 +1210,7 @@ int effective_trace_length(_PyUOpInstruction *buffer, int length)
if (opcode == _NOP) {
nop_count++;
}
if (is_terminator(&buffer[i]) {
if (is_terminator(&buffer[i])) {
return i+1-nop_count;
}
}
Expand Down