move declaration to top of block

This commit is contained in:
Benjamin Peterson 2012-10-12 11:37:56 -04:00
parent 31a58ff1c3
commit f208df3618
1 changed files with 1 additions and 1 deletions

View File

@ -1402,8 +1402,8 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
TARGET(DUP_TOP_TWO) {
PyObject *top = TOP();
Py_INCREF(top);
PyObject *second = SECOND();
Py_INCREF(top);
Py_INCREF(second);
STACKADJ(2);
SET_TOP(top);