Author: Maciej Fijalkowski <fij...@gmail.com>
Branch: 
Changeset: r168:b870541f1dc3
Date: 2011-08-01 18:42 +0200
http://bitbucket.org/pypy/jitviewer/changeset/b870541f1dc3/

Log:    fix for bridges

diff --git a/_jitviewer/templates/loop.html b/_jitviewer/templates/loop.html
--- a/_jitviewer/templates/loop.html
+++ b/_jitviewer/templates/loop.html
@@ -13,6 +13,9 @@
                    {% for op in chunk.operations[1:] %}
                       {% if op.bridge %}
                         <span id="loop-{{op.bridge.no}}" class="guard 
single-operation">{{op.html_repr()}}</span> <a href="/" 
onClick="replace_from(this, {{op.bridge.no}}); return false">&gt;&gt;show 
bridge</a> (taken {{op.percentage}}%)<br/>
+                        {% if op.asm %}
+                          <p class="asm">{{op.asm}}</p>
+                        {% endif %}
                       {% else %}
                         <span 
class="{{op.html_class()}}">{{op.html_repr()}}</span><br/>
                         {% if op.asm %}
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to