[pypy-commit] pypy op_malloc_gc: fix

arigo noreply at buildbot.pypy.org
Mon Dec 19 06:49:28 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: op_malloc_gc
Changeset: r50690:0375ea14f16d
Date: 2011-12-19 06:48 +0100
http://bitbucket.org/pypy/pypy/changeset/0375ea14f16d/

Log:	fix

diff --git a/pypy/jit/backend/x86/test/test_gc_integration.py b/pypy/jit/backend/x86/test/test_gc_integration.py
--- a/pypy/jit/backend/x86/test/test_gc_integration.py
+++ b/pypy/jit/backend/x86/test/test_gc_integration.py
@@ -199,7 +199,7 @@
         return rffi.cast(lltype.Signed, self.addrs) + WORD
 
     def get_malloc_slowpath_addr(self):
-        return self.c_malloc_nursery_fn.value
+        return self.get_malloc_fn_addr('malloc_nursery')
 
     def check_nothing_in_nursery(self):
         # CALL_MALLOC_NURSERY should not write anything in the nursery


More information about the pypy-commit mailing list