Author: Armin Rigo <[email protected]>
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"
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to