| Index: src/compiler/js-inlining.cc
|
| diff --git a/src/compiler/js-inlining.cc b/src/compiler/js-inlining.cc
|
| index 00e4011b416665c8c1b318b2913f7df253614d51..c929ffde5b7281accc2f0bee3b1f31d605312929 100644
|
| --- a/src/compiler/js-inlining.cc
|
| +++ b/src/compiler/js-inlining.cc
|
| @@ -2,6 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#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 +58,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));
|
| CHECK(Compiler::EnsureDeoptimizationSupport(info));
|
| }
|
|
|
|
|