| Index: src/ic/handler-compiler.cc
|
| diff --git a/src/ic/handler-compiler.cc b/src/ic/handler-compiler.cc
|
| index 7f440c07ca0e4de42d2000148a3cef236bfaa847..657811223a9505bb2b3f6c0378f07c70d55a3774 100644
|
| --- a/src/ic/handler-compiler.cc
|
| +++ b/src/ic/handler-compiler.cc
|
| @@ -422,9 +422,7 @@ void ElementHandlerCompiler::CompileElementHandlers(
|
| } else {
|
| bool is_js_array = receiver_map->instance_type() == JS_ARRAY_TYPE;
|
| ElementsKind elements_kind = receiver_map->elements_kind();
|
| - if (receiver_map->has_indexed_interceptor()) {
|
| - cached_stub = LoadIndexedInterceptorStub(isolate()).GetCode();
|
| - } else if (IsSloppyArgumentsElements(elements_kind)) {
|
| + if (IsSloppyArgumentsElements(elements_kind)) {
|
| cached_stub = KeyedLoadSloppyArgumentsStub(isolate()).GetCode();
|
| } else if (IsFastElementsKind(elements_kind) ||
|
| IsExternalArrayElementsKind(elements_kind) ||
|
|
|