| Index: src/runtime/runtime.h
|
| diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
|
| index 9157aef48376a4ccf79c1d9294206bc996c10db4..006089c8e847606c90dc7cb21ae8b0a0905d93fe 100644
|
| --- a/src/runtime/runtime.h
|
| +++ b/src/runtime/runtime.h
|
| @@ -656,17 +656,8 @@ namespace internal {
|
| F(HasFastHoleyElements, 1, 1) \
|
| F(HasDictionaryElements, 1, 1) \
|
| F(HasSloppyArgumentsElements, 1, 1) \
|
| - F(HasExternalArrayElements, 1, 1) \
|
| + F(HasFixedTypedArrayElements, 1, 1) \
|
| F(HasFastProperties, 1, 1) \
|
| - F(HasExternalUint8Elements, 1, 1) \
|
| - F(HasExternalInt8Elements, 1, 1) \
|
| - F(HasExternalUint16Elements, 1, 1) \
|
| - F(HasExternalInt16Elements, 1, 1) \
|
| - F(HasExternalUint32Elements, 1, 1) \
|
| - F(HasExternalInt32Elements, 1, 1) \
|
| - F(HasExternalFloat32Elements, 1, 1) \
|
| - F(HasExternalFloat64Elements, 1, 1) \
|
| - F(HasExternalUint8ClampedElements, 1, 1) \
|
| F(HasFixedUint8Elements, 1, 1) \
|
| F(HasFixedInt8Elements, 1, 1) \
|
| F(HasFixedUint16Elements, 1, 1) \
|
| @@ -889,7 +880,6 @@ class Runtime : public AllStatic {
|
| };
|
|
|
| static void ArrayIdToTypeAndSize(int array_id, ExternalArrayType* type,
|
| - ElementsKind* external_elements_kind,
|
| ElementsKind* fixed_elements_kind,
|
| size_t* element_size);
|
|
|
|
|