| Index: src/compiler/js-inlining.cc
|
| diff --git a/src/compiler/js-inlining.cc b/src/compiler/js-inlining.cc
|
| index f8346029bfeb921dae3b41eb1fb6f32711e8c401..f4e6d4018e707634c70e183d584028d88dcd6822 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"
|
| @@ -63,6 +65,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));
|
| }
|
|
|
|
|