commit | f208df3618f52c11fb97046951a16706af6fc3e3 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Fri Oct 12 11:37:56 2012 -0400 |
committer | Benjamin Peterson <benjamin@python.org> | Fri Oct 12 11:37:56 2012 -0400 |
tree | e69d5007c7d18317c1b6f9c9f48f94f3cda23d4e | |
parent | 31a58ff1c311dfee91716387b43f8c793fd7a10b [diff] |
move declaration to top of block
diff --git a/Python/ceval.c b/Python/ceval.c index 2697235..c13436f 100644 --- a/Python/ceval.c +++ b/Python/ceval.c
@@ -1402,8 +1402,8 @@ TARGET(DUP_TOP_TWO) { PyObject *top = TOP(); - Py_INCREF(top); PyObject *second = SECOND(); + Py_INCREF(top); Py_INCREF(second); STACKADJ(2); SET_TOP(top);