Index: src/ia32/code-stubs-ia32.cc |
diff --git a/src/ia32/code-stubs-ia32.cc b/src/ia32/code-stubs-ia32.cc |
index 7cf9b44bc8d109fb5533b567bd2dbf16d699baf8..aee57dc385c70368c9b89f84a064301862e89a91 100644 |
--- a/src/ia32/code-stubs-ia32.cc |
+++ b/src/ia32/code-stubs-ia32.cc |
@@ -262,6 +262,17 @@ void StoreGlobalStub::InitializeInterfaceDescriptor( |
} |
+void ElementsTransitionAndStoreStub::InitializeInterfaceDescriptor( |
+ Isolate* isolate, |
+ CodeStubInterfaceDescriptor* descriptor) { |
+ static Register registers[] = { eax, ebx, ecx, edx }; |
+ descriptor->register_param_count_ = 4; |
+ descriptor->register_params_ = registers; |
+ descriptor->deoptimization_handler_ = |
+ FUNCTION_ADDR(ElementsTransitionAndStoreIC_Miss); |
+} |
+ |
+ |
#define __ ACCESS_MASM(masm) |