| Index: src/builtins/mips/builtins-mips.cc
 | 
| diff --git a/src/builtins/mips/builtins-mips.cc b/src/builtins/mips/builtins-mips.cc
 | 
| index ca48d152ef857e21faffd42f68dca15592897864..b686b476d27b099aa7f08f66f3865cc5a2953e13 100644
 | 
| --- a/src/builtins/mips/builtins-mips.cc
 | 
| +++ b/src/builtins/mips/builtins-mips.cc
 | 
| @@ -1145,31 +1145,6 @@ void Builtins::Generate_InterpreterEntryTrampoline(MacroAssembler* masm) {
 | 
|    __ Jump(t0);
 | 
|  }
 | 
|  
 | 
| -void Builtins::Generate_InterpreterMarkBaselineOnReturn(MacroAssembler* masm) {
 | 
| -  // Save the function and context for call to CompileBaseline.
 | 
| -  __ lw(a1, MemOperand(fp, StandardFrameConstants::kFunctionOffset));
 | 
| -  __ lw(kContextRegister,
 | 
| -        MemOperand(fp, StandardFrameConstants::kContextOffset));
 | 
| -
 | 
| -  // Leave the frame before recompiling for baseline so that we don't count as
 | 
| -  // an activation on the stack.
 | 
| -  LeaveInterpreterFrame(masm, t0);
 | 
| -
 | 
| -  {
 | 
| -    FrameScope frame_scope(masm, StackFrame::INTERNAL);
 | 
| -    // Push return value.
 | 
| -    __ push(v0);
 | 
| -
 | 
| -    // Push function as argument and compile for baseline.
 | 
| -    __ push(a1);
 | 
| -    __ CallRuntime(Runtime::kCompileBaseline);
 | 
| -
 | 
| -    // Restore return value.
 | 
| -    __ pop(v0);
 | 
| -  }
 | 
| -  __ Jump(ra);
 | 
| -}
 | 
| -
 | 
|  static void Generate_StackOverflowCheck(MacroAssembler* masm, Register num_args,
 | 
|                                          Register scratch1, Register scratch2,
 | 
|                                          Label* stack_overflow) {
 | 
| 
 |