[pypy-commit] pypy arm-backend-2: update to gcrootmap.get_basic_shape interface

bivab noreply at buildbot.pypy.org
Sun Mar 18 17:21:45 CET 2012


Author: David Schneider <david.schneider at picle.org>
Branch: arm-backend-2
Changeset: r53796:743ce402a43d
Date: 2012-03-18 16:19 +0000
http://bitbucket.org/pypy/pypy/changeset/743ce402a43d/

Log:	update to gcrootmap.get_basic_shape interface

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
@@ -988,7 +988,7 @@
         return [imm(size)]
 
     def get_mark_gc_roots(self, gcrootmap, use_copy_area=False):
-        shape = gcrootmap.get_basic_shape(False)
+        shape = gcrootmap.get_basic_shape()
         for v, val in self.frame_manager.bindings.items():
             if (isinstance(v, BoxPtr) and self.rm.stays_alive(v)):
                 assert val.is_stack()


More information about the pypy-commit mailing list