Skip to content

Commit

Permalink
bpo-40925: Remove unused stack macro SET_VALUE (GH-20783)
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 committed Jun 11, 2020
1 parent 31d1779 commit 33faf5c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Python/ceval.c
Expand Up @@ -1157,7 +1157,6 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, PyFrameObject *f, int throwflag)
#define SET_SECOND(v) (stack_pointer[-2] = (v))
#define SET_THIRD(v) (stack_pointer[-3] = (v))
#define SET_FOURTH(v) (stack_pointer[-4] = (v))
#define SET_VALUE(n, v) (stack_pointer[-(n)] = (v))
#define BASIC_STACKADJ(n) (stack_pointer += n)
#define BASIC_PUSH(v) (*stack_pointer++ = (v))
#define BASIC_POP() (*--stack_pointer)
Expand Down

0 comments on commit 33faf5c

Please sign in to comment.