Author: Armin Rigo <ar...@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")
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to