Index: src/compiler/js-inlining.cc |
diff --git a/src/compiler/js-inlining.cc b/src/compiler/js-inlining.cc |
index 00e4011b416665c8c1b318b2913f7df253614d51..c9ad8a1543215185ad5a05ad260da89448456286 100644 |
--- a/src/compiler/js-inlining.cc |
+++ b/src/compiler/js-inlining.cc |
@@ -2,6 +2,8 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
+#include "src/ast.h" |
+#include "src/ast-numbering.h" |
#include "src/compiler/access-builder.h" |
#include "src/compiler/ast-graph-builder.h" |
#include "src/compiler/common-operator.h" |
@@ -57,6 +59,7 @@ static void Parse(Handle<JSFunction> function, CompilationInfoWithZone* info) { |
CHECK(Parser::Parse(info)); |
CHECK(Rewriter::Rewrite(info)); |
CHECK(Scope::Analyze(info)); |
+ CHECK(AstNumbering::Renumber(info->function(), info->zone())); |
CHECK(Compiler::EnsureDeoptimizationSupport(info)); |
} |