| Index: src/ia32/code-stubs-ia32.cc
|
| diff --git a/src/ia32/code-stubs-ia32.cc b/src/ia32/code-stubs-ia32.cc
|
| index 00574367440093db162bc90ab23438c832b5615d..cd034eda5eb2a809cae6562c909c0639f25cf1f1 100644
|
| --- a/src/ia32/code-stubs-ia32.cc
|
| +++ b/src/ia32/code-stubs-ia32.cc
|
| @@ -84,22 +84,15 @@ void CreateAllocationSiteStub::InitializeInterfaceDescriptor(
|
| }
|
|
|
|
|
| -void InstanceofStub::InitializeInterfaceDescriptor(
|
| - Isolate* isolate, CodeStubInterfaceDescriptor* descriptor) {
|
| - Register registers[] = {esi, left(), right()};
|
| - descriptor->Initialize(MajorKey(), ARRAY_SIZE(registers), registers);
|
| -}
|
| -
|
| -
|
| void CallFunctionStub::InitializeInterfaceDescriptor(
|
| - Isolate* isolate, CodeStubInterfaceDescriptor* descriptor) {
|
| + CodeStubInterfaceDescriptor* descriptor) {
|
| Register registers[] = {esi, edi};
|
| descriptor->Initialize(MajorKey(), ARRAY_SIZE(registers), registers);
|
| }
|
|
|
|
|
| void CallConstructStub::InitializeInterfaceDescriptor(
|
| - Isolate* isolate, CodeStubInterfaceDescriptor* descriptor) {
|
| + CodeStubInterfaceDescriptor* descriptor) {
|
| // eax : number of arguments
|
| // ebx : feedback vector
|
| // edx : (only if ebx is not the megamorphic symbol) slot in feedback
|
|
|