| Index: src/full-codegen/arm/full-codegen-arm.cc
|
| diff --git a/src/full-codegen/arm/full-codegen-arm.cc b/src/full-codegen/arm/full-codegen-arm.cc
|
| index 8c50fc2cd1481be88b986086535ba999bbd8b89d..e438acf7bd2b1c743cde2b1a986f69907010bf80 100644
|
| --- a/src/full-codegen/arm/full-codegen-arm.cc
|
| +++ b/src/full-codegen/arm/full-codegen-arm.cc
|
| @@ -787,8 +787,8 @@ void FullCodeGenerator::VisitFunctionDeclaration(
|
| FeedbackVectorSlot slot = proxy->VariableFeedbackSlot();
|
| DCHECK(!slot.IsInvalid());
|
| globals_->Add(handle(Smi::FromInt(slot.ToInt()), isolate()), zone());
|
| - Handle<SharedFunctionInfo> function = Compiler::GetSharedFunctionInfo(
|
| - declaration->fun(), script(), info_, compilation_mode_);
|
| + Handle<SharedFunctionInfo> function =
|
| + Compiler::GetSharedFunctionInfo(declaration->fun(), script(), info_);
|
| // Check for stack-overflow exception.
|
| if (function.is_null()) return SetStackOverflow();
|
| globals_->Add(function, zone());
|
|
|