| Index: src/x87/interface-descriptors-x87.cc
|
| diff --git a/src/x87/interface-descriptors-x87.cc b/src/x87/interface-descriptors-x87.cc
|
| index 8bc607d1c767a08b384b769372cacfc0e3953ba9..272c15f0dba1b9c469d4e06f696d8a37c20cd076 100644
|
| --- a/src/x87/interface-descriptors-x87.cc
|
| +++ b/src/x87/interface-descriptors-x87.cc
|
| @@ -263,6 +263,13 @@ void AllocateHeapNumberDescriptor::InitializePlatformSpecific(
|
| data->InitializePlatformSpecific(0, nullptr, nullptr);
|
| }
|
|
|
| +#define SIMD128_ALLOC_DESC(TYPE, Type, type, lane_count, lane_type) \
|
| + void Allocate##Type##Descriptor::InitializePlatformSpecific( \
|
| + CallInterfaceDescriptorData* data) { \
|
| + data->InitializePlatformSpecific(0, nullptr, nullptr); \
|
| + }
|
| +SIMD128_TYPES(SIMD128_ALLOC_DESC)
|
| +#undef SIMD128_ALLOC_DESC
|
|
|
| void AllocateInNewSpaceDescriptor::InitializePlatformSpecific(
|
| CallInterfaceDescriptorData* data) {
|
|
|