[pypy-commit] pypy unroll-if-alt: fix translation

alex_gaynor noreply at buildbot.pypy.org
Fri Sep 16 22:12:34 CEST 2011


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: unroll-if-alt
Changeset: r47309:5054a6b1aee5
Date: 2011-09-16 16:11 -0400
http://bitbucket.org/pypy/pypy/changeset/5054a6b1aee5/

Log:	fix translation

diff --git a/pypy/jit/metainterp/pyjitpl.py b/pypy/jit/metainterp/pyjitpl.py
--- a/pypy/jit/metainterp/pyjitpl.py
+++ b/pypy/jit/metainterp/pyjitpl.py
@@ -401,6 +401,7 @@
         self.metainterp.heapcache.new_array(resbox, lengthbox)
         return resbox
 
+    @specialize.arg(1)
     def _do_getarrayitem_gc_any(self, op, arraybox, arraydescr, indexbox):
         tobox = self.metainterp.heapcache.getarrayitem(
                 arraybox, arraydescr, indexbox)


More information about the pypy-commit mailing list