| Index: src/mips/code-stubs-mips.h
 | 
| diff --git a/src/mips/code-stubs-mips.h b/src/mips/code-stubs-mips.h
 | 
| index c3e05b8a2d4ed6fc2be614f73911f96abb5cf57e..a0e01b229ea57b9f5b739d129a5710b3ecfdeebd 100644
 | 
| --- a/src/mips/code-stubs-mips.h
 | 
| +++ b/src/mips/code-stubs-mips.h
 | 
| @@ -38,30 +38,6 @@ namespace internal {
 | 
|  void ArrayNativeCode(MacroAssembler* masm, Label* call_generic_code);
 | 
|  
 | 
|  
 | 
| -// Compute a transcendental math function natively, or call the
 | 
| -// TranscendentalCache runtime function.
 | 
| -class TranscendentalCacheStub: public PlatformCodeStub {
 | 
| - public:
 | 
| -  enum ArgumentType {
 | 
| -    TAGGED = 0 << TranscendentalCache::kTranscendentalTypeBits,
 | 
| -    UNTAGGED = 1 << TranscendentalCache::kTranscendentalTypeBits
 | 
| -  };
 | 
| -
 | 
| -  TranscendentalCacheStub(TranscendentalCache::Type type,
 | 
| -                          ArgumentType argument_type)
 | 
| -      : type_(type), argument_type_(argument_type) { }
 | 
| -  void Generate(MacroAssembler* masm);
 | 
| - private:
 | 
| -  TranscendentalCache::Type type_;
 | 
| -  ArgumentType argument_type_;
 | 
| -  void GenerateCallCFunction(MacroAssembler* masm, Register scratch);
 | 
| -
 | 
| -  Major MajorKey() { return TranscendentalCache; }
 | 
| -  int MinorKey() { return type_ | argument_type_; }
 | 
| -  Runtime::FunctionId RuntimeFunction();
 | 
| -};
 | 
| -
 | 
| -
 | 
|  class StoreBufferOverflowStub: public PlatformCodeStub {
 | 
|   public:
 | 
|    explicit StoreBufferOverflowStub(SaveFPRegsMode save_fp)
 | 
| 
 |