Author: Maciej Fijalkowski <[email protected]>
Branch: jitframe-on-heap
Changeset: r60406:23c6dc20e6d7
Date: 2013-01-24 00:16 +0200
http://bitbucket.org/pypy/pypy/changeset/23c6dc20e6d7/

Log:    disable those debug prints

diff --git a/rpython/jit/backend/model.py b/rpython/jit/backend/model.py
--- a/rpython/jit/backend/model.py
+++ b/rpython/jit/backend/model.py
@@ -325,10 +325,10 @@
         debug_stop("jit-mem-looptoken-alloc")
 
     def __del__(self):
-        debug_start("jit-mem-looptoken-free")
-        debug_print("freeing Loop #", self.number, 'with',
-                    self.bridges_count, 'attached bridges')
+        #debug_start("jit-mem-looptoken-free")
+        #debug_print("freeing Loop #", self.number, 'with',
+        #            self.bridges_count, 'attached bridges')
         self.cpu.free_loop_and_bridges(self)
         self.cpu.tracker.total_freed_loops += 1
         self.cpu.tracker.total_freed_bridges += self.bridges_count
-        debug_stop("jit-mem-looptoken-free")
+        #debug_stop("jit-mem-looptoken-free")
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to