| Index: src/full-codegen/arm64/full-codegen-arm64.cc
|
| diff --git a/src/full-codegen/arm64/full-codegen-arm64.cc b/src/full-codegen/arm64/full-codegen-arm64.cc
|
| index 95437e76d1cfad23ee94ae595d1db734fd32a4fc..76e8cfdd3b20d0316a17ebc51fa588c5732f3333 100644
|
| --- a/src/full-codegen/arm64/full-codegen-arm64.cc
|
| +++ b/src/full-codegen/arm64/full-codegen-arm64.cc
|
| @@ -782,8 +782,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());
|
|
|