Skip to content

Commit f392667

Browse files
committed
move INPUTS_DEAD() to the right place
1 parent 6c4d7f3 commit f392667

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

Python/bytecodes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4073,9 +4073,9 @@ dummy_func(
40734073

40744074
assert(oparg == 1);
40754075
STAT_INC(CALL, hit);
4076-
INPUTS_DEAD();
40774076
PyObject *res_o = PySequence_Tuple(arg_o);
40784077
a = arg;
4078+
INPUTS_DEAD();
40794079
ERROR_IF(res_o == NULL);
40804080
res = PyStackRef_FromPyObjectSteal(res_o);
40814081
}

Python/executor_cases.c.h

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python/generated_cases.c.h

Lines changed: 3 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)