Commit c70a1244 authored by jing.bao's avatar jing.bao Committed by Commit bot

[turbolizer] Fix distinguishing simplified nodes

BUG=

Review-Url: https://codereview.chromium.org/2523263003
Cr-Commit-Position: refs/heads/master@{#41270}
parent d5f253cc
......@@ -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') ||
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment