[pypy-commit] pypy arm-backend-2: remove another reference to boxes

bivab noreply at buildbot.pypy.org
Mon Nov 21 17:13:38 CET 2011


Author: David Schneider <david.schneider at picle.org>
Branch: arm-backend-2
Changeset: r49629:406a32f88290
Date: 2011-11-21 15:35 +0100
http://bitbucket.org/pypy/pypy/changeset/406a32f88290/

Log:	remove another reference to boxes

diff --git a/pypy/jit/backend/arm/regalloc.py b/pypy/jit/backend/arm/regalloc.py
--- a/pypy/jit/backend/arm/regalloc.py
+++ b/pypy/jit/backend/arm/regalloc.py
@@ -672,7 +672,8 @@
         if _check_imm_arg(c_ofs):
             ofs_loc = imm(ofs)
         else:
-            ofs_loc = self._ensure_value_is_boxed(c_ofs, boxes)
+            ofs_loc = self._ensure_value_is_boxed(c_ofs, 
+                    [base_loc, index_loc, value_loc])
         return [base_loc, index_loc, value_loc, ofs_loc, imm(ofs),
                                         imm(itemsize), imm(fieldsize)]
 


More information about the pypy-commit mailing list