aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pypy/jit/tool/traceviewer.py')
-rwxr-xr-xpypy/jit/tool/traceviewer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pypy/jit/tool/traceviewer.py b/pypy/jit/tool/traceviewer.py
index a6386e4fcc..366a799ddf 100755
--- a/pypy/jit/tool/traceviewer.py
+++ b/pypy/jit/tool/traceviewer.py
@@ -74,7 +74,7 @@ class BasicBlock(object):
def generate(self, dotgen, counts):
val = counts.get(self.key, 0)
- if val > counts.threshold:
+ if False: #val > counts.threshold:
fillcolor = get_gradient_color(self.ratio)
else:
fillcolor = "white"