[pypy-commit] pypy stmgc-c7: Fix

arigo noreply at buildbot.pypy.org
Wed Aug 27 10:57:07 CEST 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: stmgc-c7
Changeset: r73080:b590b6bbe094
Date: 2014-08-27 10:56 +0200
http://bitbucket.org/pypy/pypy/changeset/b590b6bbe094/

Log:	Fix

diff --git a/rpython/rtyper/lltypesystem/opimpl.py b/rpython/rtyper/lltypesystem/opimpl.py
--- a/rpython/rtyper/lltypesystem/opimpl.py
+++ b/rpython/rtyper/lltypesystem/opimpl.py
@@ -715,8 +715,8 @@
 def op_jit_assembler_call(funcptr, *args):
     return funcptr(*args)
 
-def op_stm_rewind_jmp_frame():
-    pass
+def op_stm_rewind_jmp_frame(x=None):
+    return llmemory.NULL
 
 def op_stm_hint_commit_soon():
     pass


More information about the pypy-commit mailing list