| Index: src/full-codegen/mips64/full-codegen-mips64.cc
|
| diff --git a/src/full-codegen/mips64/full-codegen-mips64.cc b/src/full-codegen/mips64/full-codegen-mips64.cc
|
| index 8f289a59efea7e849a9c4f308641c6fe1bf7321f..1f9caafc49b3bda3a4eb8bed400f06a83491b7cf 100644
|
| --- a/src/full-codegen/mips64/full-codegen-mips64.cc
|
| +++ b/src/full-codegen/mips64/full-codegen-mips64.cc
|
| @@ -797,8 +797,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_);
|
| + Handle<SharedFunctionInfo> function = Compiler::GetSharedFunctionInfo(
|
| + declaration->fun(), script(), info_, compilation_mode_);
|
| // Check for stack-overflow exception.
|
| if (function.is_null()) return SetStackOverflow();
|
| globals_->Add(function, zone());
|
|
|