Skip to content

Commit 3ed47d2

Browse files
committed
Wrap line
1 parent af88646 commit 3ed47d2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Python/optimizer_analysis.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,9 @@ remove_unneeded_uops(_PyUOpInstruction *buffer, int buffer_size)
611611
// _LOAD_FAST + _POP_TWO_LOAD_CONST_INLINE_BORROW + _POP_TOP
612612
// ...becomes:
613613
// _NOP + _POP_TOP + _NOP
614-
while (op_without_pop[opcode] || opcode == _POP_CALL || opcode == _POP_CALL_LOAD_CONST_INLINE_BORROW) {
614+
while (op_without_pop[opcode] ||
615+
opcode == _POP_CALL ||
616+
opcode == _POP_CALL_LOAD_CONST_INLINE_BORROW) {
615617
_PyUOpInstruction *last = &buffer[pc - 1];
616618
while (op_skip[last->opcode]) {
617619
last--;

0 commit comments

Comments
 (0)