[pypy-commit] pypy stmgc-c4: it was the impl in runner.py that was actually missing

Raemi noreply at buildbot.pypy.org
Mon Jan 13 16:39:59 CET 2014


Author: Remi Meier <remi.meier at gmail.com>
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
     
     # ----------


More information about the pypy-commit mailing list