Index: src/ic/ia32/handler-compiler-ia32.cc |
diff --git a/src/ic/ia32/handler-compiler-ia32.cc b/src/ic/ia32/handler-compiler-ia32.cc |
index 1f4a42c40fa23dec283c95d9854c5633226c55c3..5b3f0ea8f41a91c43b0620edad25f8b70693e668 100644 |
--- a/src/ic/ia32/handler-compiler-ia32.cc |
+++ b/src/ic/ia32/handler-compiler-ia32.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(); |
} |