[pypy-commit] pypy stmgc-c7: Fix

arigo noreply at buildbot.pypy.org
Thu Aug 21 18:07:59 CEST 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: stmgc-c7
Changeset: r72950:c13564d2e37b
Date: 2014-08-21 18:07 +0200
http://bitbucket.org/pypy/pypy/changeset/c13564d2e37b/

Log:	Fix

diff --git a/rpython/translator/c/funcgen.py b/rpython/translator/c/funcgen.py
--- a/rpython/translator/c/funcgen.py
+++ b/rpython/translator/c/funcgen.py
@@ -202,7 +202,7 @@
             if self.use_stm_rewind_jmp_frame == "automatic":
                 yield 'stm_rewind_jmp_enterframe(&stm_thread_local, &rjbuf1);'
             else:
-                yield 'stm_rewind_jmp_prepareframe(&rjbuf1);'
+                yield 'rewind_jmp_prepareframe(&rjbuf1);'
         #
         graph = self.graph
         yield 'goto block0;'    # to avoid a warning "this label is not used"


More information about the pypy-commit mailing list