Index: src/compiler/linkage.cc |
diff --git a/src/compiler/linkage.cc b/src/compiler/linkage.cc |
index 4bee176beb4dda4a3420340fc4baf196244c5b6d..670c4bb571ff716e63cd6066fda64fd4c6da4baf 100644 |
--- a/src/compiler/linkage.cc |
+++ b/src/compiler/linkage.cc |
@@ -93,11 +93,10 @@ CallDescriptor* Linkage::GetJSCallDescriptor(int parameter_count) { |
} |
-CallDescriptor* Linkage::GetRuntimeCallDescriptor(Runtime::FunctionId function, |
- int parameter_count, |
- Operator::Property properties, |
- CallDescriptor::Flags flags) { |
- return GetRuntimeCallDescriptor(function, parameter_count, properties, flags, |
+CallDescriptor* Linkage::GetRuntimeCallDescriptor( |
+ Runtime::FunctionId function, int parameter_count, |
+ Operator::Property properties) { |
+ return GetRuntimeCallDescriptor(function, parameter_count, properties, |
this->info_->zone()); |
} |
@@ -123,7 +122,6 @@ CallDescriptor* Linkage::GetJSCallDescriptor(int parameter_count, Zone* zone) { |
CallDescriptor* Linkage::GetRuntimeCallDescriptor(Runtime::FunctionId function, |
int parameter_count, |
Operator::Property properties, |
- CallDescriptor::Flags flags, |
Zone* zone) { |
UNIMPLEMENTED(); |
return NULL; |