[pypy-svn] pypy jit-shadowstack: Fix for rpython/lltypesystem/test/test_lloperation.py.

arigo commits-noreply at bitbucket.org
Thu Mar 31 17:12:06 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: jit-shadowstack
Changeset: r43057:090b53db6cfd
Date: 2011-03-31 17:07 +0200
http://bitbucket.org/pypy/pypy/changeset/090b53db6cfd/

Log:	Fix for rpython/lltypesystem/test/test_lloperation.py.

diff --git a/pypy/rpython/llinterp.py b/pypy/rpython/llinterp.py
--- a/pypy/rpython/llinterp.py
+++ b/pypy/rpython/llinterp.py
@@ -854,6 +854,9 @@
     def op_gc_adr_of_nursery_free(self):
         raise NotImplementedError
 
+    def op_gc_adr_of_root_stack_top(self):
+        raise NotImplementedError
+
     def op_gc_call_rtti_destructor(self, rtti, addr):
         if hasattr(rtti._obj, 'destructor_funcptr'):
             d = rtti._obj.destructor_funcptr


More information about the Pypy-commit mailing list