| Index: src/ic.h
|
| diff --git a/src/ic.h b/src/ic.h
|
| index 4cf3193ebf5431eeb6638d591fef763a423c664a..7af09ee3aab18e50633717a4a18a69741dfaf6ed 100644
|
| --- a/src/ic.h
|
| +++ b/src/ic.h
|
| @@ -350,7 +350,7 @@ class KeyedIC: public IC {
|
| bool is_js_array) = 0;
|
|
|
| virtual MaybeObject* GetExternalArrayStubWithoutMapCheck(
|
| - ExternalArrayType array_type) = 0;
|
| + JSObject::ElementsKind elements_kind) = 0;
|
|
|
| protected:
|
| virtual Code* string_stub() {
|
| @@ -422,7 +422,7 @@ class KeyedLoadIC: public KeyedIC {
|
| bool is_js_array);
|
|
|
| virtual MaybeObject* GetExternalArrayStubWithoutMapCheck(
|
| - ExternalArrayType array_type);
|
| + JSObject::ElementsKind elements_kind);
|
|
|
| protected:
|
| virtual Code::Kind kind() const { return Code::KEYED_LOAD_IC; }
|
| @@ -572,7 +572,7 @@ class KeyedStoreIC: public KeyedIC {
|
| bool is_js_array);
|
|
|
| virtual MaybeObject* GetExternalArrayStubWithoutMapCheck(
|
| - ExternalArrayType array_type);
|
| + JSObject::ElementsKind elements_kind);
|
|
|
| protected:
|
| virtual Code::Kind kind() const { return Code::KEYED_STORE_IC; }
|
|
|