| Index: src/mips64/interface-descriptors-mips64.cc | 
| diff --git a/src/mips64/interface-descriptors-mips64.cc b/src/mips64/interface-descriptors-mips64.cc | 
| index 639405dc876538ea7f4252fdfcc988b10901ef60..1630851f5209a93f80da26318e118862dab97a43 100644 | 
| --- a/src/mips64/interface-descriptors-mips64.cc | 
| +++ b/src/mips64/interface-descriptors-mips64.cc | 
| @@ -283,34 +283,6 @@ void StringAddDescriptor::InitializePlatformSpecific( | 
| data->InitializePlatformSpecific(arraysize(registers), registers, NULL); | 
| } | 
|  | 
| - | 
| -void KeyedDescriptor::InitializePlatformSpecific( | 
| -    CallInterfaceDescriptorData* data) { | 
| -  Register registers[] = { | 
| -      a2,  // key | 
| -  }; | 
| -  data->InitializePlatformSpecific(arraysize(registers), registers); | 
| -} | 
| - | 
| - | 
| -void NamedDescriptor::InitializePlatformSpecific( | 
| -    CallInterfaceDescriptorData* data) { | 
| -  Register registers[] = { | 
| -      a2,  // name | 
| -  }; | 
| -  data->InitializePlatformSpecific(arraysize(registers), registers); | 
| -} | 
| - | 
| - | 
| -void CallHandlerDescriptor::InitializePlatformSpecific( | 
| -    CallInterfaceDescriptorData* data) { | 
| -  Register registers[] = { | 
| -      a0,  // receiver | 
| -  }; | 
| -  data->InitializePlatformSpecific(arraysize(registers), registers); | 
| -} | 
| - | 
| - | 
| void ArgumentAdaptorDescriptor::InitializePlatformSpecific( | 
| CallInterfaceDescriptorData* data) { | 
| Register registers[] = { | 
|  |