Index: src/x64/code-stubs-x64.cc |
diff --git a/src/x64/code-stubs-x64.cc b/src/x64/code-stubs-x64.cc |
index 0e53eb390ed1bafc32a948c663c84e7b528f4650..f65a94a179b726ff99eb4f3cf1f3fcf288876409 100644 |
--- a/src/x64/code-stubs-x64.cc |
+++ b/src/x64/code-stubs-x64.cc |
@@ -59,11 +59,6 @@ void FastCloneShallowArrayStub::InitializeInterfaceDescriptor( |
static Register registers[] = { rax, rbx, rcx }; |
descriptor->register_param_count_ = 3; |
descriptor->register_params_ = registers; |
- static Representation representations[] = { |
- Representation::Tagged(), |
- Representation::Smi(), |
- Representation::Tagged() }; |
- descriptor->register_param_representations_ = representations; |
descriptor->deoptimization_handler_ = |
Runtime::FunctionForId( |
Runtime::kHiddenCreateArrayLiteralStubBailout)->entry; |
@@ -193,11 +188,6 @@ static void InitializeArrayConstructorDescriptor( |
descriptor->handler_arguments_mode_ = PASS_ARGUMENTS; |
descriptor->stack_parameter_count_ = rax; |
descriptor->register_param_count_ = 3; |
- static Representation representations[] = { |
- Representation::Tagged(), |
- Representation::Tagged(), |
- Representation::Integer32() }; |
- descriptor->register_param_representations_ = representations; |
descriptor->register_params_ = registers_variable_args; |
} |
@@ -226,10 +216,6 @@ static void InitializeInternalArrayConstructorDescriptor( |
descriptor->stack_parameter_count_ = rax; |
descriptor->register_param_count_ = 2; |
descriptor->register_params_ = registers_variable_args; |
- static Representation representations[] = { |
- Representation::Tagged(), |
- Representation::Integer32() }; |
- descriptor->register_param_representations_ = representations; |
} |
descriptor->hint_stack_parameter_count_ = constant_stack_parameter_count; |