Index: src/mips/code-stubs-mips.cc |
=================================================================== |
--- src/mips/code-stubs-mips.cc (revision 14866) |
+++ src/mips/code-stubs-mips.cc (working copy) |
@@ -46,7 +46,6 @@ |
static Register registers[] = { a3, a2, a1 }; |
descriptor->register_param_count_ = 3; |
descriptor->register_params_ = registers; |
- descriptor->stack_parameter_count_ = NULL; |
descriptor->deoptimization_handler_ = |
Runtime::FunctionForId(Runtime::kCreateArrayLiteralShallow)->entry; |
} |
@@ -58,7 +57,6 @@ |
static Register registers[] = { a3, a2, a1, a0 }; |
descriptor->register_param_count_ = 4; |
descriptor->register_params_ = registers; |
- descriptor->stack_parameter_count_ = NULL; |
descriptor->deoptimization_handler_ = |
Runtime::FunctionForId(Runtime::kCreateObjectLiteralShallow)->entry; |
} |
@@ -81,7 +79,6 @@ |
static Register registers[] = { a0 }; |
descriptor->register_param_count_ = 1; |
descriptor->register_params_ = registers; |
- descriptor->stack_parameter_count_ = NULL; |
descriptor->deoptimization_handler_ = NULL; |
} |
@@ -92,7 +89,6 @@ |
static Register registers[] = { a1 }; |
descriptor->register_param_count_ = 1; |
descriptor->register_params_ = registers; |
- descriptor->stack_parameter_count_ = NULL; |
descriptor->deoptimization_handler_ = NULL; |
} |