move declaration to top of block
This commit is contained in:
parent
31a58ff1c3
commit
f208df3618
|
@ -1402,8 +1402,8 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
|
||||||
|
|
||||||
TARGET(DUP_TOP_TWO) {
|
TARGET(DUP_TOP_TWO) {
|
||||||
PyObject *top = TOP();
|
PyObject *top = TOP();
|
||||||
Py_INCREF(top);
|
|
||||||
PyObject *second = SECOND();
|
PyObject *second = SECOND();
|
||||||
|
Py_INCREF(top);
|
||||||
Py_INCREF(second);
|
Py_INCREF(second);
|
||||||
STACKADJ(2);
|
STACKADJ(2);
|
||||||
SET_TOP(top);
|
SET_TOP(top);
|
||||||
|
|
Loading…
Reference in New Issue