| Index: src/compiler/linkage-impl.h
|
| diff --git a/src/compiler/linkage-impl.h b/src/compiler/linkage-impl.h
|
| index 98f8f1c5b7b0af4357b7a07fcab4700a1e68f3f4..1791a43007a177f676ba1f9549759a39ca3f0ccd 100644
|
| --- a/src/compiler/linkage-impl.h
|
| +++ b/src/compiler/linkage-impl.h
|
| @@ -215,15 +215,16 @@ class LinkageHelper {
|
| // The target for C calls is always an address (i.e. machine pointer).
|
| MachineType target_type = kMachPtr;
|
| LinkageLocation target_loc = LinkageLocation::AnyRegister();
|
| - return new (zone) CallDescriptor( // --
|
| - CallDescriptor::kCallAddress, // kind
|
| - target_type, // target MachineType
|
| - target_loc, // target location
|
| - msig, // machine_sig
|
| - locations.Build(), // location_sig
|
| - 0, // js_parameter_count
|
| - Operator::kNoProperties, // properties
|
| - LinkageTraits::CCalleeSaveRegisters(), CallDescriptor::kNoFlags,
|
| + return new (zone) CallDescriptor( // --
|
| + CallDescriptor::kCallAddress, // kind
|
| + target_type, // target MachineType
|
| + target_loc, // target location
|
| + msig, // machine_sig
|
| + locations.Build(), // location_sig
|
| + 0, // js_parameter_count
|
| + Operator::kNoProperties, // properties
|
| + LinkageTraits::CCalleeSaveRegisters(), // callee-saved registers
|
| + CallDescriptor::kNoFlags, // flags
|
| "c-call");
|
| }
|
|
|
|
|