[pypy-commit] pypy ppc-jit-backend: Remove argument to get_basic_shape().

edelsohn noreply at buildbot.pypy.org
Tue Jun 12 17:39:18 CEST 2012


Author: edelsohn
Branch: ppc-jit-backend
Changeset: r55621:c075da56a9e4
Date: 2012-06-12 11:39 -0400
http://bitbucket.org/pypy/pypy/changeset/c075da56a9e4/

Log:	Remove argument to get_basic_shape().

diff --git a/pypy/jit/backend/ppc/regalloc.py b/pypy/jit/backend/ppc/regalloc.py
--- a/pypy/jit/backend/ppc/regalloc.py
+++ b/pypy/jit/backend/ppc/regalloc.py
@@ -958,7 +958,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