[pypy-commit] pypy gc_no_cleanup_nursery: oops

fijal noreply at buildbot.pypy.org
Thu Sep 11 20:01:35 CEST 2014


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: gc_no_cleanup_nursery
Changeset: r73467:91d9dc7a4a1c
Date: 2014-09-11 12:00 -0600
http://bitbucket.org/pypy/pypy/changeset/91d9dc7a4a1c/

Log:	oops

diff --git a/rpython/memory/gctransform/framework.py b/rpython/memory/gctransform/framework.py
--- a/rpython/memory/gctransform/framework.py
+++ b/rpython/memory/gctransform/framework.py
@@ -865,7 +865,7 @@
 
     def gct_do_malloc_varsize_clear(self, hop):
         # used by the JIT (see rpython.jit.backend.llsupport.gc)
-        self.gct_do_malloc_fixedsize(hop)
+        self.gct_do_malloc_varsize(hop)
         if not self.malloc_zero_filled:
             op = hop.spaceop
             v_size = op.args[1]


More information about the pypy-commit mailing list