| Index: src/x87/interface-descriptors-x87.cc
|
| diff --git a/src/x87/interface-descriptors-x87.cc b/src/x87/interface-descriptors-x87.cc
|
| index 9fe05359a9d17a4bfe5ff0b1888e1f81bf6c0328..66494f3eda6abf64c9a20c8f21eb2cf158f7028a 100644
|
| --- a/src/x87/interface-descriptors-x87.cc
|
| +++ b/src/x87/interface-descriptors-x87.cc
|
| @@ -251,6 +251,16 @@ void AllocateHeapNumberDescriptor::InitializePlatformSpecific(
|
| SIMD128_TYPES(SIMD128_ALLOC_DESC)
|
| #undef SIMD128_ALLOC_DESC
|
|
|
| +void ArrayNoArgumentConstructorDescriptor::InitializePlatformSpecific(
|
| + CallInterfaceDescriptorData* data) {
|
| + // register state
|
| + // eax -- number of arguments
|
| + // edi -- function
|
| + // ebx -- allocation site with elements kind
|
| + Register registers[] = {edi, ebx, eax};
|
| + data->InitializePlatformSpecific(arraysize(registers), registers, NULL);
|
| +}
|
| +
|
| void ArrayConstructorConstantArgCountDescriptor::InitializePlatformSpecific(
|
| CallInterfaceDescriptorData* data) {
|
| // register state
|
|
|