Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(515)

Unified Diff: tools/turbolizer/node.js

Issue 2232933002: [turbolizer] Display labels when they're at most 40 chars, not 30. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698