| Index: src/compiler.cc
|
| diff --git a/src/compiler.cc b/src/compiler.cc
|
| index 0e6c3a3867c95a824698396991b8d7e3d7c9e882..8e94f7637ad2cc3c29846dcbb5285ec2785674df 100644
|
| --- a/src/compiler.cc
|
| +++ b/src/compiler.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "src/compiler.h"
|
|
|
| +#include "src/ast-numbering.h"
|
| #include "src/bootstrapper.h"
|
| #include "src/codegen.h"
|
| #include "src/compilation-cache.h"
|
| @@ -746,6 +747,7 @@ static bool CompileOptimizedPrologue(CompilationInfo* info) {
|
| if (!Parser::Parse(info)) return false;
|
| if (!Rewriter::Rewrite(info)) return false;
|
| if (!Scope::Analyze(info)) return false;
|
| + if (!AstNumbering::Renumber(info->function(), info->zone())) return false;
|
| DCHECK(info->scope() != NULL);
|
| return true;
|
| }
|
|
|