| Index: src/mips/code-stubs-mips.cc
|
| diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc
|
| index e334b2896eb2f6a3aeee4a9baf6f76d034d3f0fa..a0e990ccb06350a36ceafca6b2715252f2c15388 100644
|
| --- a/src/mips/code-stubs-mips.cc
|
| +++ b/src/mips/code-stubs-mips.cc
|
| @@ -78,7 +78,7 @@ void FastCloneShallowArrayStub::InitializeInterfaceDescriptor(
|
| descriptor->register_param_count_ = 3;
|
| descriptor->register_params_ = registers;
|
| descriptor->deoptimization_handler_ =
|
| - Runtime::FunctionForId(Runtime::kCreateArrayLiteralShallow)->entry;
|
| + Runtime::FunctionForId(Runtime::kCreateArrayLiteral)->entry;
|
| }
|
|
|
|
|
| @@ -5156,8 +5156,7 @@ void ICCompareStub::GenerateMiss(MacroAssembler* masm) {
|
| ExternalReference(IC_Utility(IC::kCompareIC_Miss), masm->isolate());
|
| FrameScope scope(masm, StackFrame::INTERNAL);
|
| __ Push(a1, a0);
|
| - __ push(ra);
|
| - __ Push(a1, a0);
|
| + __ Push(ra, a1, a0);
|
| __ li(t0, Operand(Smi::FromInt(op_)));
|
| __ addiu(sp, sp, -kPointerSize);
|
| __ CallExternalReference(miss, 3, USE_DELAY_SLOT);
|
|
|