| Index: src/mips/code-stubs-mips.cc
 | 
| diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc
 | 
| index a7960fa37971ae65801c86d96696859162d0fde7..cacc9217393727edf788b76b157640a5add5b30b 100644
 | 
| --- a/src/mips/code-stubs-mips.cc
 | 
| +++ b/src/mips/code-stubs-mips.cc
 | 
| @@ -87,34 +87,6 @@ void RegExpConstructResultStub::InitializeInterfaceDescriptor(
 | 
|  }
 | 
|  
 | 
|  
 | 
| -void LoadFieldStub::InitializeInterfaceDescriptor(
 | 
| -    CodeStubInterfaceDescriptor* descriptor) {
 | 
| -  Register registers[] = { a0 };
 | 
| -  descriptor->Initialize(ARRAY_SIZE(registers), registers);
 | 
| -}
 | 
| -
 | 
| -
 | 
| -void KeyedLoadFieldStub::InitializeInterfaceDescriptor(
 | 
| -    CodeStubInterfaceDescriptor* descriptor) {
 | 
| -  Register registers[] = { a1 };
 | 
| -  descriptor->Initialize(ARRAY_SIZE(registers), registers);
 | 
| -}
 | 
| -
 | 
| -
 | 
| -void StringLengthStub::InitializeInterfaceDescriptor(
 | 
| -    CodeStubInterfaceDescriptor* descriptor) {
 | 
| -  Register registers[] = { a0, a2 };
 | 
| -  descriptor->Initialize(ARRAY_SIZE(registers), registers);
 | 
| -}
 | 
| -
 | 
| -
 | 
| -void KeyedStringLengthStub::InitializeInterfaceDescriptor(
 | 
| -    CodeStubInterfaceDescriptor* descriptor) {
 | 
| -  Register registers[] = { a1, a0 };
 | 
| -  descriptor->Initialize(ARRAY_SIZE(registers), registers);
 | 
| -}
 | 
| -
 | 
| -
 | 
|  void KeyedStoreFastElementStub::InitializeInterfaceDescriptor(
 | 
|      CodeStubInterfaceDescriptor* descriptor) {
 | 
|    Register registers[] = { a2, a1, a0 };
 | 
| 
 |