[pypy-commit] pypy jit-leaner-frontend: fix rpython

fijal pypy.commits at gmail.com
Sat Mar 12 11:44:46 EST 2016


Author: fijal
Branch: jit-leaner-frontend
Changeset: r82995:17c5928daa79
Date: 2016-03-12 18:43 +0200
http://bitbucket.org/pypy/pypy/changeset/17c5928daa79/

Log:	fix rpython

diff --git a/rpython/jit/metainterp/opencoder.py b/rpython/jit/metainterp/opencoder.py
--- a/rpython/jit/metainterp/opencoder.py
+++ b/rpython/jit/metainterp/opencoder.py
@@ -119,6 +119,7 @@
         args = []
         for i in range(argnum):
             args.append(self._untag(self._next()))
+        descr_index = -1
         if opwithdescr[opnum]:
             descr_index = self._next()
             if descr_index == -1 or rop.is_guard(opnum):


More information about the pypy-commit mailing list