[pypy-commit] pypy ppc-jit-backend: Remove GPR 1 from those registers which are preserved across function calls

hager noreply at buildbot.pypy.org
Fri Nov 11 11:05:20 CET 2011


Author: hager <sven.hager at uni-duesseldorf.de>
Branch: ppc-jit-backend
Changeset: r49295:4b4ba001ebbb
Date: 2011-11-11 11:04 +0100
http://bitbucket.org/pypy/pypy/changeset/4b4ba001ebbb/

Log:	Remove GPR 1 from those registers which are preserved across
	function calls

diff --git a/pypy/jit/backend/ppc/ppcgen/register.py b/pypy/jit/backend/ppc/ppcgen/register.py
--- a/pypy/jit/backend/ppc/ppcgen/register.py
+++ b/pypy/jit/backend/ppc/ppcgen/register.py
@@ -6,7 +6,7 @@
     r17, r18, r19, r20, r21, r22, r23, r24, r25, r26, r27, r28, r29, r30, r31\
     = ALL_REGS
 
-NONVOLATILES    = [r1, r14, r15, r16, r17, r18, r19, r20, r21, r22, r23,
+NONVOLATILES    = [r14, r15, r16, r17, r18, r19, r20, r21, r22, r23,
                     r24, r25, r26, r27, r28, r29, r30, r31]
 VOLATILES       = [r0, r3, r4, r5, r6, r7, r8, r9, r10, r11, r12, r13]
 


More information about the pypy-commit mailing list