[pypy-commit] pypy default: Fix test

arigo pypy.commits at gmail.com
Sun May 28 10:44:28 EDT 2017


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r91430:0d24dcc53f09
Date: 2017-05-28 16:43 +0200
http://bitbucket.org/pypy/pypy/changeset/0d24dcc53f09/

Log:	Fix test

diff --git a/rpython/rtyper/llinterp.py b/rpython/rtyper/llinterp.py
--- a/rpython/rtyper/llinterp.py
+++ b/rpython/rtyper/llinterp.py
@@ -862,6 +862,9 @@
     def op_gc_adr_of_root_stack_top(self):
         raise NotImplementedError
 
+    def op_gc_modified_shadowstack(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