Skip to content

Commit f419221

Browse files
committed
Add comment
1 parent 8c5d3fb commit f419221

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Python/flowgraph.c

+1
Original file line numberDiff line numberDiff line change
@@ -1312,6 +1312,7 @@ remove_redundant_deadstore(basicblock *bb)
13121312
for (int j = i - 1; j >= 0; j--) {
13131313
cfg_instr *prev = &bb->b_instr[j];
13141314
if (prev->i_loc.lineno != inst->i_loc.lineno) {
1315+
// Invariant condition: lineno is always monotonically increasing.
13151316
break;
13161317
}
13171318
if (prev->i_opcode == STORE_FAST && prev->i_oparg == inst->i_oparg) {

0 commit comments

Comments
 (0)