[pypy-commit] pypy ppc-jit-backend: merge

hager noreply at buildbot.pypy.org
Thu Mar 1 13:08:49 CET 2012


Author: hager <sven.hager at uni-duesseldorf.de>
Branch: ppc-jit-backend
Changeset: r53049:36ea49e24efc
Date: 2012-03-01 04:07 -0800
http://bitbucket.org/pypy/pypy/changeset/36ea49e24efc/

Log:	merge

diff --git a/pypy/jit/backend/ppc/ppc_assembler.py b/pypy/jit/backend/ppc/ppc_assembler.py
--- a/pypy/jit/backend/ppc/ppc_assembler.py
+++ b/pypy/jit/backend/ppc/ppc_assembler.py
@@ -317,7 +317,7 @@
             for _ in range(6):
                 mc.write32(0)
         frame_size = (# add space for floats later
-                    + BACKCHAIN_SIZE * WORD)
+                    + (BACKCHAIN_SIZE + MAX_REG_PARAMS) * WORD)
         if IS_PPC_32:
             mc.stwu(r.SP.value, r.SP.value, -frame_size)
             mc.mflr(r.SCRATCH.value)


More information about the pypy-commit mailing list