[pypy-svn] r65570 - pypy/branch/pyjitpl5-experiments/pypy/rpython/memory/gc

arigo at codespeak.net arigo at codespeak.net
Thu Jun 4 09:02:20 CEST 2009


Author: arigo
Date: Thu Jun  4 09:02:20 2009
New Revision: 65570

Modified:
   pypy/branch/pyjitpl5-experiments/pypy/rpython/memory/gc/generation.py
Log:
Forgot a llop.debug_print().


Modified: pypy/branch/pyjitpl5-experiments/pypy/rpython/memory/gc/generation.py
==============================================================================
--- pypy/branch/pyjitpl5-experiments/pypy/rpython/memory/gc/generation.py	(original)
+++ pypy/branch/pyjitpl5-experiments/pypy/rpython/memory/gc/generation.py	Thu Jun  4 09:02:20 2009
@@ -427,8 +427,8 @@
         # Additionally, it makes the code in write_barrier() marginally smaller
         # (which is important because it is inlined *everywhere*).
         def remember_young_pointer(addr_struct, addr):
-            llop.debug_print(lltype.Void, "\tremember_young_pointer",
-                             addr_struct, "<-", addr)
+            #llop.debug_print(lltype.Void, "\tremember_young_pointer",
+            #                 addr_struct, "<-", addr)
             ll_assert(not self.is_in_nursery(addr_struct),
                          "nursery object with GCFLAG_NO_YOUNG_PTRS")
             if self.is_in_nursery(addr):



More information about the Pypy-commit mailing list