| Index: src/compiler/linkage.h
|
| diff --git a/src/compiler/linkage.h b/src/compiler/linkage.h
|
| index d11fa124681214fcb37e55d0b912eb26ae0e1c84..60a21425eec8f64bf244678b474d3dacf78a55ec 100644
|
| --- a/src/compiler/linkage.h
|
| +++ b/src/compiler/linkage.h
|
| @@ -174,8 +174,10 @@ class Linkage : public ZoneObject {
|
| // The call descriptor for this compilation unit describes the locations
|
| // of incoming parameters and the outgoing return value(s).
|
| CallDescriptor* GetIncomingDescriptor() const { return incoming_; }
|
| - CallDescriptor* GetJSCallDescriptor(int parameter_count) const;
|
| - static CallDescriptor* GetJSCallDescriptor(int parameter_count, Zone* zone);
|
| + CallDescriptor* GetJSCallDescriptor(int parameter_count,
|
| + CallDescriptor::Flags flags) const;
|
| + static CallDescriptor* GetJSCallDescriptor(int parameter_count, Zone* zone,
|
| + CallDescriptor::Flags flags);
|
| CallDescriptor* GetRuntimeCallDescriptor(
|
| Runtime::FunctionId function, int parameter_count,
|
| Operator::Properties properties) const;
|
|
|