| 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 79c390fef10df2fe5ccc632ee1409ee365a9f0b1..73e9da06d159c140360f0980b362d3986419cf0a 100644
|
| --- a/src/full-codegen/mips/full-codegen-mips.cc
|
| +++ b/src/full-codegen/mips/full-codegen-mips.cc
|
| @@ -2849,7 +2849,9 @@ void FullCodeGenerator::EmitPossiblyEvalCall(Call* expr) {
|
| SetCallPosition(expr);
|
| __ lw(a1, MemOperand(sp, (arg_count + 1) * kPointerSize));
|
| __ li(a0, Operand(arg_count));
|
| - __ Call(isolate()->builtins()->Call(), RelocInfo::CODE_TARGET);
|
| + __ Call(isolate()->builtins()->Call(ConvertReceiverMode::kAny,
|
| + expr->tail_call_mode()),
|
| + RelocInfo::CODE_TARGET);
|
| RecordJSReturnSite(expr);
|
| // Restore context register.
|
| __ lw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
|
|
|