| Index: src/ia32/interface-descriptors-ia32.cc
|
| diff --git a/src/ia32/interface-descriptors-ia32.cc b/src/ia32/interface-descriptors-ia32.cc
|
| index a2dedc2dc4836451477ad1866351168505177c35..12f0d6ab92c792effdb3330afab32ac638a7ae56 100644
|
| --- a/src/ia32/interface-descriptors-ia32.cc
|
| +++ b/src/ia32/interface-descriptors-ia32.cc
|
| @@ -59,11 +59,6 @@ const Register StringCompareDescriptor::LeftRegister() { return edx; }
|
| const Register StringCompareDescriptor::RightRegister() { return eax; }
|
|
|
|
|
| -const Register ArgumentsAccessNewDescriptor::function() { return edi; }
|
| -const Register ArgumentsAccessNewDescriptor::parameter_count() { return ecx; }
|
| -const Register ArgumentsAccessNewDescriptor::parameter_pointer() { return edx; }
|
| -
|
| -
|
| const Register ApiGetterDescriptor::function_address() { return edx; }
|
|
|
|
|
| @@ -100,6 +95,13 @@ void FastNewRestParameterDescriptor::InitializePlatformSpecific(
|
| }
|
|
|
|
|
| +void FastNewSloppyArgumentsDescriptor::InitializePlatformSpecific(
|
| + CallInterfaceDescriptorData* data) {
|
| + Register registers[] = {edi};
|
| + data->InitializePlatformSpecific(arraysize(registers), registers, NULL);
|
| +}
|
| +
|
| +
|
| void FastNewStrictArgumentsDescriptor::InitializePlatformSpecific(
|
| CallInterfaceDescriptorData* data) {
|
| Register registers[] = {edi};
|
|
|