| 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 290c27401899fc1c49cf8bbaf41ae59abba9a363..0f20f29d6fa638d6bfbf89dd7e04004543c11d8e 100644
|
| --- a/src/full-codegen/mips/full-codegen-mips.cc
|
| +++ b/src/full-codegen/mips/full-codegen-mips.cc
|
| @@ -2400,7 +2400,7 @@ void FullCodeGenerator::EmitCall(Call* expr, ConvertReceiverMode mode) {
|
| __ li(a3, Operand(SmiFromSlot(expr->CallFeedbackICSlot())));
|
| __ lw(a1, MemOperand(sp, (arg_count + 1) * kPointerSize));
|
| __ li(a0, Operand(arg_count));
|
| - __ Call(code, RelocInfo::CODE_TARGET);
|
| + CallIC(code);
|
| OperandStackDepthDecrement(arg_count + 1);
|
|
|
| RecordJSReturnSite(expr);
|
| @@ -2549,7 +2549,7 @@ void FullCodeGenerator::VisitCallNew(CallNew* expr) {
|
| __ li(a3, Operand(SmiFromSlot(expr->CallNewFeedbackSlot())));
|
|
|
| CallConstructStub stub(isolate());
|
| - __ Call(stub.GetCode(), RelocInfo::CODE_TARGET);
|
| + CallIC(stub.GetCode());
|
| OperandStackDepthDecrement(arg_count + 1);
|
| PrepareForBailoutForId(expr->ReturnId(), BailoutState::TOS_REGISTER);
|
| RestoreContext();
|
|
|