| Index: src/mips/code-stubs-mips.cc | 
| diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc | 
| index 0592f2e2a63ba12e641ef07b0d5386fc18099ce9..a0e990ccb06350a36ceafca6b2715252f2c15388 100644 | 
| --- a/src/mips/code-stubs-mips.cc | 
| +++ b/src/mips/code-stubs-mips.cc | 
| @@ -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); | 
|  |