| Index: src/ic/x87/handler-compiler-x87.cc
|
| diff --git a/src/ic/x87/handler-compiler-x87.cc b/src/ic/x87/handler-compiler-x87.cc
|
| index 985db3587252da932979e112264a3bbe9e523942..5ba8cedd1e1256147cd34294e0632701a3523b6c 100644
|
| --- a/src/ic/x87/handler-compiler-x87.cc
|
| +++ b/src/ic/x87/handler-compiler-x87.cc
|
| @@ -763,22 +763,6 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreCallback(
|
| }
|
|
|
|
|
| -Handle<Code> NamedStoreHandlerCompiler::CompileStoreInterceptor(
|
| - Handle<Name> name) {
|
| - __ pop(scratch1()); // remove the return address
|
| - __ push(receiver());
|
| - __ push(this->name());
|
| - __ push(value());
|
| - __ push(scratch1()); // restore return address
|
| -
|
| - // Do tail-call to the runtime system.
|
| - __ TailCallRuntime(Runtime::kStorePropertyWithInterceptor);
|
| -
|
| - // Return the generated code.
|
| - return GetCode(kind(), Code::FAST, name);
|
| -}
|
| -
|
| -
|
| Register NamedStoreHandlerCompiler::value() {
|
| return StoreDescriptor::ValueRegister();
|
| }
|
|
|