Index: src/code-stubs.cc |
diff --git a/src/code-stubs.cc b/src/code-stubs.cc |
index 90d36a423bee93af93e0dc3833783541f9114a51..353a228aaa269b087fa1052486357b8f93c79838 100644 |
--- a/src/code-stubs.cc |
+++ b/src/code-stubs.cc |
@@ -45,7 +45,6 @@ CodeStubInterfaceDescriptor::CodeStubInterfaceDescriptor() |
hint_stack_parameter_count_(-1), |
function_mode_(NOT_JS_FUNCTION_STUB_MODE), |
register_params_(NULL), |
- register_param_representations_(NULL), |
deoptimization_handler_(NULL), |
handler_arguments_mode_(DONT_PASS_ARGUMENTS), |
miss_handler_(), |
@@ -753,7 +752,9 @@ void FastNewContextStub::InstallDescriptors(Isolate* isolate) { |
// static |
void FastCloneShallowArrayStub::InstallDescriptors(Isolate* isolate) { |
- FastCloneShallowArrayStub stub(isolate, DONT_TRACK_ALLOCATION_SITE); |
+ FastCloneShallowArrayStub stub(isolate, |
+ FastCloneShallowArrayStub::CLONE_ELEMENTS, |
+ DONT_TRACK_ALLOCATION_SITE, 0); |
InstallDescriptor(isolate, &stub); |
} |