Index: src/ic/x64/handler-compiler-x64.cc |
diff --git a/src/ic/x64/handler-compiler-x64.cc b/src/ic/x64/handler-compiler-x64.cc |
index edab74dd2955c50b41efaecb398a8fecd3ae4d18..c2f5381f892b99a2f43015e9e8a2ee102de80d6a 100644 |
--- a/src/ic/x64/handler-compiler-x64.cc |
+++ b/src/ic/x64/handler-compiler-x64.cc |
@@ -760,22 +760,6 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreCallback( |
} |
-Handle<Code> NamedStoreHandlerCompiler::CompileStoreInterceptor( |
- Handle<Name> name) { |
- __ PopReturnAddressTo(scratch1()); |
- __ Push(receiver()); |
- __ Push(this->name()); |
- __ Push(value()); |
- __ PushReturnAddressFrom(scratch1()); |
- |
- // 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(); |
} |