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

fijal pypy.commits at gmail.com
Fri Mar 11 07:39:41 EST 2016


Author: fijal
Branch: jit-leaner-frontend
Changeset: r82964:49a54211e9fc
Date: 2016-03-11 14:38 +0200
http://bitbucket.org/pypy/pypy/changeset/49a54211e9fc/

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
@@ -202,6 +202,8 @@
         self._bigints_dict = {}
         self._refs_dict = {}
         self._floats_dict = {}
+        return 0 # completely different than TraceIter.done, but we have to
+        # share the base class
 
     def length(self):
         return self._pos


More information about the pypy-commit mailing list