| Index: src/compiler/linkage.cc
|
| diff --git a/src/compiler/linkage.cc b/src/compiler/linkage.cc
|
| index 670c4bb571ff716e63cd6066fda64fd4c6da4baf..089bde15e3a24d70ef9c485b90557bcc59051089 100644
|
| --- a/src/compiler/linkage.cc
|
| +++ b/src/compiler/linkage.cc
|
| @@ -95,7 +95,7 @@ CallDescriptor* Linkage::GetJSCallDescriptor(int parameter_count) {
|
|
|
| CallDescriptor* Linkage::GetRuntimeCallDescriptor(
|
| Runtime::FunctionId function, int parameter_count,
|
| - Operator::Property properties) {
|
| + Operator::Properties properties) {
|
| return GetRuntimeCallDescriptor(function, parameter_count, properties,
|
| this->info_->zone());
|
| }
|
| @@ -119,10 +119,9 @@ CallDescriptor* Linkage::GetJSCallDescriptor(int parameter_count, Zone* zone) {
|
| }
|
|
|
|
|
| -CallDescriptor* Linkage::GetRuntimeCallDescriptor(Runtime::FunctionId function,
|
| - int parameter_count,
|
| - Operator::Property properties,
|
| - Zone* zone) {
|
| +CallDescriptor* Linkage::GetRuntimeCallDescriptor(
|
| + Runtime::FunctionId function, int parameter_count,
|
| + Operator::Properties properties, Zone* zone) {
|
| UNIMPLEMENTED();
|
| return NULL;
|
| }
|
|
|