Index: src/ic/ic-compiler.cc |
diff --git a/src/ic/ic-compiler.cc b/src/ic/ic-compiler.cc |
index 75b8f6ce6445169f1d9e8cf615e93a796a1f6cf5..fb6906ce3b90b1e51d9876e47be344a33be2a4f1 100644 |
--- a/src/ic/ic-compiler.cc |
+++ b/src/ic/ic-compiler.cc |
@@ -101,9 +101,7 @@ Handle<Code> PropertyICCompiler::ComputeKeyedLoadMonomorphic( |
receiver_map->instance_type() == JS_ARRAY_TYPE, |
elements_kind).GetCode(); |
} else { |
- stub = FLAG_compiled_keyed_dictionary_loads |
- ? LoadDictionaryElementStub(isolate).GetCode() |
- : LoadDictionaryElementPlatformStub(isolate).GetCode(); |
+ stub = LoadDictionaryElementStub(isolate).GetCode(); |
} |
PropertyICCompiler compiler(isolate, Code::KEYED_LOAD_IC); |
Handle<Code> code = |