[pypy-commit] pypy vecopt-merge: commented print

plan_rich noreply at buildbot.pypy.org
Mon Aug 24 18:23:18 CEST 2015


Author: Richard Plangger <rich at pasra.at>
Branch: vecopt-merge
Changeset: r79209:ce56ac915e9a
Date: 2015-08-24 18:23 +0200
http://bitbucket.org/pypy/pypy/changeset/ce56ac915e9a/

Log:	commented print

diff --git a/rpython/jit/metainterp/compile.py b/rpython/jit/metainterp/compile.py
--- a/rpython/jit/metainterp/compile.py
+++ b/rpython/jit/metainterp/compile.py
@@ -197,13 +197,13 @@
         compiled = {}
         info = loop.version_info
         for descr in info.descrs:
-            print "$>", descr
+            #print "$>", descr
             version = info.get(descr)
             if not version:
                 # the guard might have been removed from the trace
                 continue
             if version not in compiled:
-                print " +COMPILE", version
+                #print " +COMPILE", version
                 assert isinstance(descr, ResumeGuardDescr)
                 vl = create_empty_loop(metainterp)
                 vl.inputargs = version.inputargs
@@ -216,7 +216,7 @@
                 assert asminfo is not None
                 compiled[version] = (asminfo, descr, version, jitcell_token)
             else:
-                print " +stitch", version
+                #print " +stitch", version
                 param = compiled[version]
                 cpu.stitch_bridge(descr, param)
 


More information about the pypy-commit mailing list