[pypy-commit] pypy jit-dynamic-getarrayitem: don't cache dynamic descrs, progress maybe

alex_gaynor noreply at buildbot.pypy.org
Mon Nov 14 21:08:04 CET 2011


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: jit-dynamic-getarrayitem
Changeset: r49418:99efe7320cf1
Date: 2011-11-14 15:07 -0500
http://bitbucket.org/pypy/pypy/changeset/99efe7320cf1/

Log:	don't cache dynamic descrs, progress maybe

diff --git a/pypy/jit/backend/llgraph/runner.py b/pypy/jit/backend/llgraph/runner.py
--- a/pypy/jit/backend/llgraph/runner.py
+++ b/pypy/jit/backend/llgraph/runner.py
@@ -339,7 +339,7 @@
         else:
             typeinfo = INT
         # we abuse the arg_types field to distinguish dynamic and static descrs
-        return self.getdescr(offset, typeinfo, arg_types='dynamic', name='<dynamic interior field>', extrainfo=width)
+        return Descr(offset, typeinfo, arg_types='dynamic', name='<dynamic interior field>', extrainfo=width)
 
     def calldescrof(self, FUNC, ARGS, RESULT, extrainfo):
         arg_types = []


More information about the pypy-commit mailing list