[pypy-commit] pypy stm-gc: Fix

arigo noreply at buildbot.pypy.org
Thu Feb 9 17:13:48 CET 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: stm-gc
Changeset: r52313:13f64ca8b78c
Date: 2012-02-09 17:13 +0100
http://bitbucket.org/pypy/pypy/changeset/13f64ca8b78c/

Log:	Fix

diff --git a/pypy/translator/stm/src_stm/et.c b/pypy/translator/stm/src_stm/et.c
--- a/pypy/translator/stm/src_stm/et.c
+++ b/pypy/translator/stm/src_stm/et.c
@@ -687,11 +687,13 @@
 
 #ifdef RPY_STM_DEBUG_PRINT
   PYPY_DEBUG_START("stm-inevitable");
+#  ifdef RPY_STM_ASSERT
   if (PYPY_HAVE_DEBUG_PRINTS)
     {
       fprintf(PYPY_DEBUG_FILE, "%s%s\n", why,
               is_inevitable(d) ? "" : " <====");
     }
+#  endif
 #endif
 
   if (is_inevitable(d))


More information about the pypy-commit mailing list