[pypy-commit] pypy gc_no_cleanup_nursery: fix for test_lloperation

arigo noreply at buildbot.pypy.org
Fri Sep 26 10:13:23 CEST 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: gc_no_cleanup_nursery
Changeset: r73720:e6791101a58b
Date: 2014-09-26 10:12 +0200
http://bitbucket.org/pypy/pypy/changeset/e6791101a58b/

Log:	fix for test_lloperation

diff --git a/rpython/rtyper/llinterp.py b/rpython/rtyper/llinterp.py
--- a/rpython/rtyper/llinterp.py
+++ b/rpython/rtyper/llinterp.py
@@ -890,9 +890,12 @@
 
     def op_do_malloc_fixedsize(self):
         raise NotImplementedError("do_malloc_fixedsize")
-
+    def op_do_malloc_fixedsize_clear(self):
+        raise NotImplementedError("do_malloc_fixedsize_clear")
     def op_do_malloc_varsize(self):
         raise NotImplementedError("do_malloc_varsize")
+    def op_do_malloc_varsize_clear(self):
+        raise NotImplementedError("do_malloc_varsize_clear")
 
     def op_get_write_barrier_failing_case(self):
         raise NotImplementedError("get_write_barrier_failing_case")


More information about the pypy-commit mailing list