[pypy-commit] pypy gc_no_cleanup_nursery: fix

fijal noreply at buildbot.pypy.org
Thu Sep 25 12:29:36 CEST 2014


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: gc_no_cleanup_nursery
Changeset: r73699:ad3983952de1
Date: 2014-09-25 12:29 +0200
http://bitbucket.org/pypy/pypy/changeset/ad3983952de1/

Log:	fix

diff --git a/rpython/jit/metainterp/blackhole.py b/rpython/jit/metainterp/blackhole.py
--- a/rpython/jit/metainterp/blackhole.py
+++ b/rpython/jit/metainterp/blackhole.py
@@ -1152,7 +1152,10 @@
     @arguments("cpu", "i", "d", returns="r")
     def bhimpl_new_array(cpu, length, arraydescr):
         return cpu.bh_new_array(length, arraydescr)
-    bhimpl_new_array_clear = bhimpl_new_array
+
+    @arguments("cpu", "i", "d", returns="r")
+    def bhimpl_new_array_clear(cpu, length, arraydescr):
+        return cpu.bh_new_array_clear(length, arraydescr)        
 
     @arguments("cpu", "r", "i", "d", returns="i")
     def bhimpl_getarrayitem_gc_i(cpu, array, index, arraydescr):


More information about the pypy-commit mailing list