| Index: src/ppc/interface-descriptors-ppc.cc
|
| diff --git a/src/ppc/interface-descriptors-ppc.cc b/src/ppc/interface-descriptors-ppc.cc
|
| index ff1cba8e49b5cc06d7f69da703c8bdecf66342d7..caf95449594be29882831b9b45d3def3e8b740ce 100644
|
| --- a/src/ppc/interface-descriptors-ppc.cc
|
| +++ b/src/ppc/interface-descriptors-ppc.cc
|
| @@ -245,6 +245,16 @@ void AllocateHeapNumberDescriptor::InitializePlatformSpecific(
|
| SIMD128_TYPES(SIMD128_ALLOC_DESC)
|
| #undef SIMD128_ALLOC_DESC
|
|
|
| +void ArrayNoArgumentConstructorDescriptor::InitializePlatformSpecific(
|
| + CallInterfaceDescriptorData* data) {
|
| + // register state
|
| + // r3 -- number of arguments
|
| + // r4 -- function
|
| + // r5 -- allocation site with elements kind
|
| + Register registers[] = {r4, r5, r3};
|
| + data->InitializePlatformSpecific(arraysize(registers), registers);
|
| +}
|
| +
|
| void ArrayConstructorConstantArgCountDescriptor::InitializePlatformSpecific(
|
| CallInterfaceDescriptorData* data) {
|
| // register state
|
|
|