Index: src/code-stubs.cc |
diff --git a/src/code-stubs.cc b/src/code-stubs.cc |
index ed0310e37d6db2f0d1197b8687dcc8327f17d5f2..c5ef9144d3e5d23a3ba88565e0d9d445fc9d3c9e 100644 |
--- a/src/code-stubs.cc |
+++ b/src/code-stubs.cc |
@@ -233,6 +233,8 @@ const char* CodeStub::MajorName(CodeStub::Major major_key, |
CODE_STUB_LIST(DEF_CASE) |
#undef DEF_CASE |
case UninitializedMajorKey: return "<UninitializedMajorKey>Stub"; |
+ case NoCache: |
+ return "<NoCache>Stub"; |
default: |
if (!allow_unknown_keys) { |
UNREACHABLE(); |
@@ -668,7 +670,7 @@ void StoreGlobalStub::InitializeInterfaceDescriptor( |
void KeyedLoadDictionaryElementPlatformStub::Generate( |
MacroAssembler* masm) { |
- KeyedLoadStubCompiler::GenerateLoadDictionaryElement(masm); |
+ IndexedHandlerCompiler::GenerateLoadDictionaryElement(masm); |
} |
@@ -695,7 +697,7 @@ void KeyedStoreElementStub::Generate(MacroAssembler* masm) { |
UNREACHABLE(); |
break; |
case DICTIONARY_ELEMENTS: |
- KeyedStoreStubCompiler::GenerateStoreDictionaryElement(masm); |
+ IndexedHandlerCompiler::GenerateStoreDictionaryElement(masm); |
break; |
case SLOPPY_ARGUMENTS_ELEMENTS: |
UNREACHABLE(); |