Commit c7127f90 authored by Ali Ijaz Sheikh's avatar Ali Ijaz Sheikh Committed by Commit Bot

CallInterfaceDescriptorData: clarify comment

Bug: 
Change-Id: If8c9db5ad4114f9ce3ca925d85a776fdb7da8fed
Reviewed-on: https://chromium-review.googlesource.com/513525Reviewed-by: 's avatarMichael Starzinger <mstarzinger@chromium.org>
Commit-Queue: Ali Ijaz Sheikh <ofrobots@google.com>
Cr-Commit-Position: refs/heads/master@{#45610}
parent 1b84cc2c
...@@ -99,13 +99,12 @@ class V8_EXPORT_PRIVATE CallInterfaceDescriptorData { ...@@ -99,13 +99,12 @@ class V8_EXPORT_PRIVATE CallInterfaceDescriptorData {
PlatformInterfaceDescriptor* platform_descriptor = NULL); PlatformInterfaceDescriptor* platform_descriptor = NULL);
// if machine_types is null, then an array of size // if machine_types is null, then an array of size
// (register_parameter_count + extra_parameter_count) will be created // (parameter_count + extra_parameter_count) will be created with
// with MachineType::AnyTagged() for each member. // MachineType::AnyTagged() for each member.
// //
// if machine_types is not null, then it should be of the size // if machine_types is not null, then it should be of the size
// register_parameter_count. Those members of the parameter array // parameter_count. Those members of the parameter array will be initialized
// will be initialized from {machine_types}, and the rest initialized // from {machine_types}, and the rest initialized to MachineType::AnyTagged().
// to MachineType::AnyTagged().
void InitializePlatformIndependent(int parameter_count, void InitializePlatformIndependent(int parameter_count,
int extra_parameter_count, int extra_parameter_count,
const MachineType* machine_types); const MachineType* machine_types);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment