| Index: src/compiler/ia32/linkage-ia32.cc
|
| diff --git a/src/compiler/ia32/linkage-ia32.cc b/src/compiler/ia32/linkage-ia32.cc
|
| index 12cc34f3b9138a79f0b745306d892b81f8d49fb9..b775626e1ffee7768ca6b1b5cda7f2158d532b76 100644
|
| --- a/src/compiler/ia32/linkage-ia32.cc
|
| +++ b/src/compiler/ia32/linkage-ia32.cc
|
| @@ -30,25 +30,26 @@ struct IA32LinkageHelperTraits {
|
|
|
| typedef LinkageHelper<IA32LinkageHelperTraits> LH;
|
|
|
| -CallDescriptor* Linkage::GetJSCallDescriptor(int parameter_count, Zone* zone,
|
| +CallDescriptor* Linkage::GetJSCallDescriptor(Zone* zone, int parameter_count,
|
| CallDescriptor::Flags flags) {
|
| return LH::GetJSCallDescriptor(zone, parameter_count, flags);
|
| }
|
|
|
|
|
| CallDescriptor* Linkage::GetRuntimeCallDescriptor(
|
| - Runtime::FunctionId function, int parameter_count,
|
| - Operator::Properties properties, Zone* zone) {
|
| + Zone* zone, Runtime::FunctionId function, int parameter_count,
|
| + Operator::Properties properties) {
|
| return LH::GetRuntimeCallDescriptor(zone, function, parameter_count,
|
| properties);
|
| }
|
|
|
|
|
| CallDescriptor* Linkage::GetStubCallDescriptor(
|
| - const CallInterfaceDescriptor& descriptor, int stack_parameter_count,
|
| - CallDescriptor::Flags flags, Operator::Properties properties, Zone* zone) {
|
| - return LH::GetStubCallDescriptor(zone, descriptor, stack_parameter_count,
|
| - flags, properties);
|
| + Isolate* isolate, Zone* zone, const CallInterfaceDescriptor& descriptor,
|
| + int stack_parameter_count, CallDescriptor::Flags flags,
|
| + Operator::Properties properties) {
|
| + return LH::GetStubCallDescriptor(isolate, zone, descriptor,
|
| + stack_parameter_count, flags, properties);
|
| }
|
|
|
|
|
|
|