| Index: src/full-codegen/mips/full-codegen-mips.cc
|
| diff --git a/src/full-codegen/mips/full-codegen-mips.cc b/src/full-codegen/mips/full-codegen-mips.cc
|
| index fdf43c06dfa5ee61d3155191b17822004ec11b18..cc3457006ffecf8f92df3c105cb1944c0bbb6ef0 100644
|
| --- a/src/full-codegen/mips/full-codegen-mips.cc
|
| +++ b/src/full-codegen/mips/full-codegen-mips.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());
|
|
|