Skip to content

Commit 48c2a20

Browse files
committed
Add dummy variables for stack effects
1 parent 415757f commit 48c2a20

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Python/bytecodes.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ typedef struct {
8181
PyObject *kwnames;
8282
} CallShape;
8383

84+
// Dummy variables for stack effects.
85+
static PyObject *value, *value1, *value2, *left, *right, *res, *sum, *prod, *sub;
86+
static PyObject *container, *start, *stop, *v;
87+
8488
static PyObject *
8589
dummy_func(
8690
PyThreadState *tstate,

0 commit comments

Comments
 (0)