| 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 ce81a4cb2db7b8ea9691b8fe4c5528de40ceda6f..5992b63ba2611602f5c9ebaefc7065d0b1f7635c 100644
|
| --- a/src/full-codegen/mips64/full-codegen-mips64.cc
|
| +++ b/src/full-codegen/mips64/full-codegen-mips64.cc
|
| @@ -2399,7 +2399,7 @@ void FullCodeGenerator::EmitCall(Call* expr, ConvertReceiverMode mode) {
|
| __ li(a3, Operand(SmiFromSlot(expr->CallFeedbackICSlot())));
|
| __ ld(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);
|
| @@ -2548,7 +2548,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();
|
|
|