Skip to content

Commit 967a18e

Browse files
committed
use new nop_out
1 parent 72a3e65 commit 967a18e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Python/flowgraph.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -1546,8 +1546,7 @@ fold_constant_intrinsic_list_to_tuple(basicblock *bb, int i,
15461546
assert(consts_found > 0);
15471547
PyTuple_SET_ITEM(newconst, --consts_found, constant);
15481548
}
1549-
INSTR_SET_OP0(instr, NOP);
1550-
INSTR_SET_LOC(instr, NO_LOCATION);
1549+
nop_out(&instr, 1);
15511550
}
15521551
assert(consts_found == 0);
15531552
return instr_make_load_const(intrinsic, newconst, consts, const_cache);

0 commit comments

Comments
 (0)