Author: Remi Meier <[email protected]>
Branch: stmgc-c4
Changeset: r68652:59e483bddcfb
Date: 2014-01-13 16:10 +0100
http://bitbucket.org/pypy/pypy/changeset/59e483bddcfb/

Log:    it was the impl in runner.py that was actually missing

diff --git a/rpython/jit/backend/llgraph/runner.py 
b/rpython/jit/backend/llgraph/runner.py
--- a/rpython/jit/backend/llgraph/runner.py
+++ b/rpython/jit/backend/llgraph/runner.py
@@ -969,6 +969,9 @@
     def execute_cond_call_stm_b(self, descr, a):
         py.test.skip("cond_call_stm_b not supported")
 
+    def execute_stm_transaction_break(self, _, really_wanted):
+        pass
+
     def execute_increment_debug_counter(self, descr, a):
         pass
 
diff --git a/rpython/jit/metainterp/blackhole.py 
b/rpython/jit/metainterp/blackhole.py
--- a/rpython/jit/metainterp/blackhole.py
+++ b/rpython/jit/metainterp/blackhole.py
@@ -899,8 +899,8 @@
         return False
 
 
-    @arguments("i")
-    def bhimpl_stm_transaction_break(really_wanted):
+    @arguments()
+    def bhimpl_stm_transaction_break():
         pass
     
     # ----------
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to