[pypy-commit] pypy default: Rename "interpret" to "normal-execution", now that it also includes the

arigo noreply at buildbot.pypy.org
Tue Apr 1 09:35:27 CEST 2014


Author: Armin Rigo <arigo at tunes.org>
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 != '-':


More information about the pypy-commit mailing list