Author: Richard Plangger <r...@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) _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit