[pypy-svn] r68268 - pypy/trunk/pypy/jit/metainterp

cfbolz at codespeak.net cfbolz at codespeak.net
Fri Oct 9 12:30:32 CEST 2009


Author: cfbolz
Date: Fri Oct  9 12:30:32 2009
New Revision: 68268

Modified:
   pypy/trunk/pypy/jit/metainterp/jitprof.py
Log:
nonsense


Modified: pypy/trunk/pypy/jit/metainterp/jitprof.py
==============================================================================
--- pypy/trunk/pypy/jit/metainterp/jitprof.py	(original)
+++ pypy/trunk/pypy/jit/metainterp/jitprof.py	Fri Oct  9 12:30:32 2009
@@ -167,7 +167,8 @@
         self._print_intline("opt ops", cnt[OPT_OPS])
         self._print_intline("opt guards", cnt[OPT_GUARDS])
         self._print_intline("forcings", cnt[OPT_FORCINGS])
-        self._print_intline("trace too long", cnt[ABORT_BRIDGE])
+        self._print_intline("trace too long", cnt[ABORT_TOO_LONG])
+        self._print_intline("bridge abort", cnt[ABORT_BRIDGE])
 
     def _print_line_time(self, string, i, tim):
         final = "%s:%s\t%d\t%f\n" % (string, " " * max(0, 13-len(string)), i, tim)



More information about the Pypy-commit mailing list