Skip to content

Commit e0ad739

Browse files
committed
Remove unnecessary loop.
1 parent aada255 commit e0ad739

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/optimizer_analysis.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ remove_unneeded_uops(_PyUOpInstruction *buffer, int buffer_size)
567567
switch (last->opcode) {
568568
case _POP_TWO_LOAD_CONST_INLINE_BORROW:
569569
last->opcode = _POP_TOP;
570-
goto optimize_pop_top_again;
570+
break;
571571
case _POP_TOP_LOAD_CONST_INLINE:
572572
case _POP_TOP_LOAD_CONST_INLINE_BORROW:
573573
last->opcode = _NOP;

0 commit comments

Comments
 (0)