| Index: src/ic/ic-compiler.cc
|
| diff --git a/src/ic/ic-compiler.cc b/src/ic/ic-compiler.cc
|
| index 1f6eb4e0794777b90dfc239c930c3519335d3f2b..9dc0145f29f1a16ce28ec8300ad4200e07ec0ef3 100644
|
| --- a/src/ic/ic-compiler.cc
|
| +++ b/src/ic/ic-compiler.cc
|
| @@ -108,9 +108,7 @@ Handle<Code> PropertyICCompiler::ComputeKeyedLoadMonomorphicHandler(
|
| Isolate* isolate = receiver_map->GetIsolate();
|
| ElementsKind elements_kind = receiver_map->elements_kind();
|
| Handle<Code> stub;
|
| - if (receiver_map->has_indexed_interceptor()) {
|
| - stub = LoadIndexedInterceptorStub(isolate).GetCode();
|
| - } else if (receiver_map->IsStringMap()) {
|
| + if (receiver_map->IsStringMap()) {
|
| // We have a string.
|
| stub = LoadIndexedStringStub(isolate).GetCode();
|
| } else if (receiver_map->has_sloppy_arguments_elements()) {
|
|
|