From: Benjamin Peterson Date: Fri, 12 Oct 2012 15:37:56 +0000 (-0400) Subject: move declaration to top of block X-Git-Tag: v3.4.0a1~2268 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f208df3618f52c11fb97046951a16706af6fc3e3;p=thirdparty%2FPython%2Fcpython.git move declaration to top of block --- diff --git a/Python/ceval.c b/Python/ceval.c index 26972353329b..c13436f4719a 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -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);