[pypy-commit] pypy stmgc-c7: Cancel 3e144ed1d5b7: it makes translate.py take 25% longer...

arigo noreply at buildbot.pypy.org
Fri Jul 4 14:21:06 CEST 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: stmgc-c7
Changeset: r72354:3676ac825f07
Date: 2014-07-04 14:20 +0200
http://bitbucket.org/pypy/pypy/changeset/3676ac825f07/

Log:	Cancel 3e144ed1d5b7: it makes translate.py take 25% longer...

diff --git a/rpython/translator/stm/src_stm/stmgcintf.c b/rpython/translator/stm/src_stm/stmgcintf.c
--- a/rpython/translator/stm/src_stm/stmgcintf.c
+++ b/rpython/translator/stm/src_stm/stmgcintf.c
@@ -42,8 +42,7 @@
         if (((long)pypy_stm_nursery_low_fill_mark_saved) > 0) {
             pypy_stm_nursery_low_fill_mark_saved = 0;
         }
-    } else {
-        /* if (((long)pypy_stm_nursery_low_fill_mark) > 0)  */
+    } else if (((long)pypy_stm_nursery_low_fill_mark) > 0) {
         /* if not set to unlimited by pypy_stm_setup() (s.b.) */
         pypy_stm_nursery_low_fill_mark = 0;
     }


More information about the pypy-commit mailing list