| Index: src/mips/code-stubs-mips.cc | 
| diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc | 
| index 1bed734cae1898667d3be7d7b283d070a7acf2e3..500f2f8f1aab06e7458930c6cee1a9945a9361af 100644 | 
| --- a/src/mips/code-stubs-mips.cc | 
| +++ b/src/mips/code-stubs-mips.cc | 
| @@ -1277,21 +1277,6 @@ void JSEntryStub::Generate(MacroAssembler* masm) { | 
| __ Jump(ra); | 
| } | 
|  | 
| -void FunctionPrototypeStub::Generate(MacroAssembler* masm) { | 
| -  Label miss; | 
| -  Register receiver = LoadDescriptor::ReceiverRegister(); | 
| -  // Ensure that the vector and slot registers won't be clobbered before | 
| -  // calling the miss handler. | 
| -  DCHECK(!AreAliased(t0, t1, LoadWithVectorDescriptor::VectorRegister(), | 
| -                     LoadWithVectorDescriptor::SlotRegister())); | 
| - | 
| -  NamedLoadHandlerCompiler::GenerateLoadFunctionPrototype(masm, receiver, t0, | 
| -                                                          t1, &miss); | 
| -  __ bind(&miss); | 
| -  PropertyAccessCompiler::TailCallBuiltin( | 
| -      masm, PropertyAccessCompiler::MissBuiltin(Code::LOAD_IC)); | 
| -} | 
| - | 
| void RegExpExecStub::Generate(MacroAssembler* masm) { | 
| // Just jump directly to runtime if native RegExp is not selected at compile | 
| // time or if regexp entry in generated code is turned off runtime switch or | 
|  |