Author: Manuel Jacob <[email protected]>
Branch: llvm-translation-backend
Changeset: r75745:18a0e4413b69
Date: 2015-02-06 20:51 +0100
http://bitbucket.org/pypy/pypy/changeset/18a0e4413b69/

Log:    Add ignored 'is_minor' parameter to
        LLVMStackRootWalker.walk_stack_roots() to match the abstract
        signature.

diff --git a/rpython/memory/gctransform/llvmgcroot.py 
b/rpython/memory/gctransform/llvmgcroot.py
--- a/rpython/memory/gctransform/llvmgcroot.py
+++ b/rpython/memory/gctransform/llvmgcroot.py
@@ -122,7 +122,7 @@
     def need_thread_support(self, gctransformer, getfn):
         pass
 
-    def walk_stack_roots(self, collect_stack_root):
+    def walk_stack_roots(self, collect_stack_root, is_minor=False):
         """Call `collect_stack_root()` for all gc roots on the stack.
 
         This is done by walking up the stack. For each safe point the hash
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to