| Index: src/x64/fast-codegen-x64.cc
|
| ===================================================================
|
| --- src/x64/fast-codegen-x64.cc (revision 3211)
|
| +++ src/x64/fast-codegen-x64.cc (working copy)
|
| @@ -28,6 +28,7 @@
|
| #include "v8.h"
|
|
|
| #include "codegen-inl.h"
|
| +#include "compiler.h"
|
| #include "debug.h"
|
| #include "fast-codegen.h"
|
| #include "parser.h"
|
| @@ -325,7 +326,8 @@
|
| Comment cmnt(masm_, "[ FunctionLiteral");
|
|
|
| // Build the function boilerplate and instantiate it.
|
| - Handle<JSFunction> boilerplate = BuildBoilerplate(expr);
|
| + Handle<JSFunction> boilerplate =
|
| + Compiler::BuildBoilerplate(expr, script_, this);
|
| if (HasStackOverflow()) return;
|
|
|
| ASSERT(boilerplate->IsBoilerplate());
|
|
|