Author: hager <[email protected]>
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]
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to