Index: src/ic.cc |
diff --git a/src/ic.cc b/src/ic.cc |
index 158d24af8ae72862f788f67e9018cb87cbf8ef26..190fdb1920ce414abe2c146c2c8d22f5865165ce 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; |