diff options
Diffstat (limited to 'deps/v8/src/arm/full-codegen-arm.cc')
-rw-r--r-- | deps/v8/src/arm/full-codegen-arm.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/v8/src/arm/full-codegen-arm.cc b/deps/v8/src/arm/full-codegen-arm.cc index 72f4128e6c..62365ffb46 100644 --- a/deps/v8/src/arm/full-codegen-arm.cc +++ b/deps/v8/src/arm/full-codegen-arm.cc @@ -666,7 +666,8 @@ void FullCodeGenerator::DeclareGlobals(Handle<FixedArray> pairs) { void FullCodeGenerator::VisitFunctionLiteral(FunctionLiteral* expr) { Comment cmnt(masm_, "[ FunctionLiteral"); - // Build the function boilerplate and instantiate it. + // Build the shared function info and instantiate the function based + // on it. Handle<SharedFunctionInfo> function_info = Compiler::BuildFunctionInfo(expr, script(), this); if (HasStackOverflow()) return; |