[pypy-commit] pypy ppc-jit-backend: Fixed test to work with new load_from_addr.

hager noreply at buildbot.pypy.org
Thu Oct 20 12:43:44 CEST 2011


Author: hager <sven.hager at uni-duesseldorf.de>
Branch: ppc-jit-backend
Changeset: r48260:b96e59515c28
Date: 2011-10-20 12:40 +0200
http://bitbucket.org/pypy/pypy/changeset/b96e59515c28/

Log:	Fixed test to work with new load_from_addr.

diff --git a/pypy/jit/backend/ppc/ppcgen/test/test_ppc.py b/pypy/jit/backend/ppc/ppcgen/test/test_ppc.py
--- a/pypy/jit/backend/ppc/ppcgen/test/test_ppc.py
+++ b/pypy/jit/backend/ppc/ppcgen/test/test_ppc.py
@@ -294,7 +294,7 @@
         addr = rffi.cast(lltype.Signed, p)
         p[0] = rffi.cast(rffi.LONG, 200)
 
-        a.load_from_addr(3, addr)
+        a.load_from_addr(r3, addr)
         a.blr()
         f = a.assemble()
         assert f() == 200


More information about the pypy-commit mailing list