Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r70373:eb3714149402
Date: 2014-04-01 09:34 +0200
http://bitbucket.org/pypy/pypy/changeset/eb3714149402/

Log:    Rename "interpret" to "normal-execution", now that it also includes
        the execution time in jit-generated machine code.

diff --git a/rpython/tool/logparser.py b/rpython/tool/logparser.py
--- a/rpython/tool/logparser.py
+++ b/rpython/tool/logparser.py
@@ -410,7 +410,7 @@
     total = sum([b for a, b in l])
     for a, b in l:
         if a is None:
-            a = 'interpret'
+            a = 'normal-execution'
         s = " " * (50 - len(a))
         print >>outfile, a, s, str(b*100/total) + "%"
     if out != '-':
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to