[pypy-svn] r68515 - pypy/branch/gc-hash/pypy/rpython
arigo at codespeak.net
arigo at codespeak.net
Thu Oct 15 21:40:20 CEST 2009
Author: arigo
Date: Thu Oct 15 21:40:18 2009
New Revision: 68515
Modified:
pypy/branch/gc-hash/pypy/rpython/llinterp.py
Log:
Fix test_lloperation.py.
Modified: pypy/branch/gc-hash/pypy/rpython/llinterp.py
==============================================================================
--- pypy/branch/gc-hash/pypy/rpython/llinterp.py (original)
+++ pypy/branch/gc-hash/pypy/rpython/llinterp.py Thu Oct 15 21:40:18 2009
@@ -824,6 +824,9 @@
def op_gc_assume_young_pointers(self, addr):
raise NotImplementedError
+ def op_gc_obtain_free_space(self, size):
+ raise NotImplementedError
+
def op_gc_can_move(self, ptr):
addr = llmemory.cast_ptr_to_adr(ptr)
return self.heap.can_move(addr)
More information about the Pypy-commit
mailing list