Index: src/ia32/fast-codegen-ia32.cc |
=================================================================== |
--- src/ia32/fast-codegen-ia32.cc (revision 3211) |
+++ src/ia32/fast-codegen-ia32.cc (working copy) |
@@ -28,6 +28,7 @@ |
#include "v8.h" |
#include "codegen-inl.h" |
+#include "compiler.h" |
#include "fast-codegen.h" |
#include "parser.h" |
@@ -305,7 +306,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()); |