| Index: src/mips/code-stubs-mips.cc | 
| diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc | 
| index 29178eb98a5343caa760831e68b74db025ec9f0c..c4a4bdcee481b309af56f1f26f06a6b00fe9ddee 100644 | 
| --- a/src/mips/code-stubs-mips.cc | 
| +++ b/src/mips/code-stubs-mips.cc | 
| @@ -259,6 +259,17 @@ void StoreGlobalStub::InitializeInterfaceDescriptor( | 
| } | 
|  | 
|  | 
| +void ElementsTransitionAndStoreStub::InitializeInterfaceDescriptor( | 
| +    Isolate* isolate, | 
| +    CodeStubInterfaceDescriptor* descriptor) { | 
| +  static Register registers[] = { a0, a3, a1, a2 }; | 
| +  descriptor->register_param_count_ = 4; | 
| +  descriptor->register_params_ = registers; | 
| +  descriptor->deoptimization_handler_ = | 
| +      FUNCTION_ADDR(ElementsTransitionAndStoreIC_Miss); | 
| +} | 
| + | 
| + | 
| #define __ ACCESS_MASM(masm) | 
|  | 
|  | 
|  |