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

hager noreply at buildbot.pypy.org
Thu Sep 8 18:39:44 CEST 2011


Author: hager <sven.hager at uni-duesseldorf.de>
Branch: ppc-jit-backend
Changeset: r47165:1965c8f56c96
Date: 2011-09-08 15:48 +0200
http://bitbucket.org/pypy/pypy/changeset/1965c8f56c96/

Log:	merge

diff --git a/pypy/jit/backend/ppc/runner.py b/pypy/jit/backend/ppc/runner.py
--- a/pypy/jit/backend/ppc/runner.py
+++ b/pypy/jit/backend/ppc/runner.py
@@ -107,6 +107,10 @@
             codebuilder.restore_nonvolatiles(self.framesize)
 
             codebuilder.lwz(0, 1, self.framesize + 4)
+            if IS_PPC_32:
+                codebuilder.lwz(0, 1, framesize + WORD) # 36
+            else:
+                codebuilder.ld(0, 1, framesize + WORD) # 36
             codebuilder.mtlr(0)
             codebuilder.addi(1, 1, self.framesize)
             codebuilder.li(3, fail_index)            


More information about the pypy-commit mailing list