[pypy-commit] jitviewer default: Found after much digging a minimal change that *at least* display all information. Badly.

arigo noreply at buildbot.pypy.org
Fri Apr 11 00:13:38 CEST 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r258:62ad3e746dac
Date: 2014-04-11 00:13 +0200
http://bitbucket.org/pypy/jitviewer/changeset/62ad3e746dac/

Log:	Found after much digging a minimal change that *at least* display
	all information. Badly.

diff --git a/_jitviewer/templates/loop.html b/_jitviewer/templates/loop.html
--- a/_jitviewer/templates/loop.html
+++ b/_jitviewer/templates/loop.html
@@ -3,7 +3,7 @@
 {% endif %}
 <br/>{{ source.inputargs|safe }}
 {% for sourceline in source.lines %}
-   {% if sourceline.in_loop %}
+   {% if sourceline.in_loop or sourceline.chunks %}
        <div id="line-{{loop.index + source.firstlineno - 1}}" class="source visible">{{sourceline.line}}</div>
        {% if sourceline.chunks %}
           <div class="operations">


More information about the pypy-commit mailing list