| Index: src/x87/code-stubs-x87.cc
|
| diff --git a/src/x87/code-stubs-x87.cc b/src/x87/code-stubs-x87.cc
|
| index 5867af7ce1487cc02fb336d44b010ca861f4bd6c..c007115a51152476b5e157063505033edd8b2a25 100644
|
| --- a/src/x87/code-stubs-x87.cc
|
| +++ b/src/x87/code-stubs-x87.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
|
|
|