[pypy-commit] pypy ppc-jit-backend: add r2 to volatile registers

hager noreply at buildbot.pypy.org
Wed Dec 14 11:28:22 CET 2011


Author: hager <sven.hager at uni-duesseldorf.de>
Branch: ppc-jit-backend
Changeset: r50490:1282dafdf468
Date: 2011-12-14 11:20 +0100
http://bitbucket.org/pypy/pypy/changeset/1282dafdf468/

Log:	add r2 to volatile registers

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
@@ -14,7 +14,7 @@
 
 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]
+VOLATILES           = [r0, r2, r3, r4, r5, r6, r7, r8, r9, r10, r11, r12, r13]
 
 NONVOLATILES_FLOAT  = [f14, f15, f16, f17, f18, f19, f20, f21, f22, f23,
                     f24, f25, f26, f27, f28, f29, f30, f31]


More information about the pypy-commit mailing list