Index: src/code-factory.cc |
diff --git a/src/code-factory.cc b/src/code-factory.cc |
index f0c872a5b9b2acd9bcba30236f0b2113cd38e41f..845c61e69165884053a581c2ff557ffae8d3c196 100644 |
--- a/src/code-factory.cc |
+++ b/src/code-factory.cc |
@@ -138,21 +138,6 @@ Callable CodeFactory::BinaryOpIC(Isolate* isolate, Token::Value op, |
// static |
-Callable CodeFactory::LoadGlobalViaContext(Isolate* isolate, int depth) { |
- LoadGlobalViaContextStub stub(isolate, depth); |
- return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); |
-} |
- |
- |
-// static |
-Callable CodeFactory::StoreGlobalViaContext(Isolate* isolate, int depth, |
- LanguageMode language_mode) { |
- StoreGlobalViaContextStub stub(isolate, depth, language_mode); |
- return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); |
-} |
- |
- |
-// static |
Callable CodeFactory::InstanceOf(Isolate* isolate) { |
InstanceOfStub stub(isolate); |
return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); |