Chromium Code Reviews| Index: tools/turbolizer/node.js |
| diff --git a/tools/turbolizer/node.js b/tools/turbolizer/node.js |
| index 18b74d021882709a6934e89f8e038422f385979d..b7025f1de5e1539ee29b4d33e088fac3ef657ac7 100644 |
| --- a/tools/turbolizer/node.js |
| +++ b/tools/turbolizer/node.js |
| @@ -63,7 +63,7 @@ var Node = { |
| }, |
| getDisplayLabel: function() { |
| var result = this.id + ":" + this.label; |
| - if (result.length > 30) { |
| + if (result.length > 40) { |
| return this.id + ":" + this.opcode; |
| } else { |
| return result; |