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