Author: Armin Rigo <[email protected]>
Branch: stmgc-c7
Changeset: r76426:0a054b97ac06
Date: 2015-03-16 22:14 +0100
http://bitbucket.org/pypy/pypy/changeset/0a054b97ac06/

Log:    translation fix

diff --git a/rpython/memory/gctransform/stmframework.py 
b/rpython/memory/gctransform/stmframework.py
--- a/rpython/memory/gctransform/stmframework.py
+++ b/rpython/memory/gctransform/stmframework.py
@@ -234,5 +234,5 @@
         # to "stm_enter_callback_call/stm_leave_callback_call".
         pass
 
-    def walk_stack_roots(self, collect_stack_root):
+    def walk_stack_roots(self, collect_stack_root, is_minor=False):
         raise NotImplementedError
diff --git a/rpython/translator/stm/readbarrier.py 
b/rpython/translator/stm/readbarrier.py
--- a/rpython/translator/stm/readbarrier.py
+++ b/rpython/translator/stm/readbarrier.py
@@ -240,7 +240,7 @@
 
     join_blocks(graph)
     annotator = stmtransformer.translator.annotator
-    insert_empty_startblock(annotator, graph)
+    insert_empty_startblock(graph)
 
     block_transformers = {}
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to