Author: Aljosa Mohorovic <[email protected]>
Branch: 
Changeset: r218:110982753cb2
Date: 2013-03-19 18:22 -0700
http://bitbucket.org/pypy/jitviewer/changeset/110982753cb2/

Log:    fixed bridge "name" for "show bridge" link

diff --git a/_jitviewer/templates/loop.html b/_jitviewer/templates/loop.html
--- a/_jitviewer/templates/loop.html
+++ b/_jitviewer/templates/loop.html
@@ -13,7 +13,7 @@
                    {% for op in chunk.operations %}
                       {% if op.name != "debug_merge_point" %}
                         {% if op.bridge %}
-                        <span class="guard 
single-operation">{{op.html_repr()}}</span><a class="bridgelink" data-name="{{ 
op.bridge }}" href="#">&nbsp;show bridge</a>&nbsp; (run {{op.count}} times, 
~{{op.percentage}}%)<br/>
+                        <span class="guard 
single-operation">{{op.html_repr()}}</span><a class="bridgelink" data-name="{{ 
op.bridge.descr }}" href="#">&nbsp;show bridge</a>&nbsp; (run {{op.count}} 
times, ~{{op.percentage}}%)<br/>
                           {% if op.asm %}
                             <p class="asm">{{op.asm}}</p>
                           {% endif %}
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to