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

Unified Diff: tools/turbolizer/node.js

Issue 2523263003: [turbolizer] Fix distinguishing simplified nodes (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 1 month 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 3656e5d7e5a547482be17df9639adaed216defb3..b718cdc4dfee34bfe48c9e9f8227de1d9fb5040a 100644
--- a/tools/turbolizer/node.js
+++ b/tools/turbolizer/node.js
@@ -26,7 +26,7 @@ var Node = {
return this.opcode.startsWith('JS');
},
isSimplified: function() {
- if (this.isJavaScript) return false;
+ if (this.isJavaScript()) return false;
return this.opcode.endsWith('Phi') ||
this.opcode.startsWith('Boolean') ||
this.opcode.startsWith('Number') ||
« 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