| Index: src/ic.cc
|
| diff --git a/src/ic.cc b/src/ic.cc
|
| index 36b91275ea85fd8eaff3c10d78540efb80bb7ea0..305d660ece6fa0b484b85ee19a788f5d1f6b8fb1 100644
|
| --- a/src/ic.cc
|
| +++ b/src/ic.cc
|
| @@ -566,7 +566,7 @@ MaybeObject* CallICBase::LoadFunction(State state,
|
| // the element if so.
|
| uint32_t index;
|
| if (name->AsArrayIndex(&index)) {
|
| - Handle<Object> result = Object::GetElement(object, index);
|
| + Handle<Object> result = Object::GetElement(isolate(), object, index);
|
| RETURN_IF_EMPTY_HANDLE(isolate(), result);
|
| if (result->IsJSFunction()) return *result;
|
|
|
|
|