[pypy-commit] pypy default: Fix

arigo noreply at buildbot.pypy.org
Sun Aug 18 21:32:42 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r66193:10d40557981e
Date: 2013-08-18 21:32 +0200
http://bitbucket.org/pypy/pypy/changeset/10d40557981e/

Log:	Fix

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
@@ -960,10 +960,10 @@
     def execute_force_token(self, _):
         return self
 
-    def execute_cond_call_gc_wb(self, descr, a, b):
+    def execute_cond_call_gc_wb(self, descr, a):
         py.test.skip("cond_call_gc_wb not supported")
 
-    def execute_cond_call_gc_wb_array(self, descr, a, b, c):
+    def execute_cond_call_gc_wb_array(self, descr, a, b):
         py.test.skip("cond_call_gc_wb_array not supported")
 
     def execute_keepalive(self, descr, x):


More information about the pypy-commit mailing list