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

Reply via email to