Index: src/runtime/runtime.h |
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h |
index 028cffefd58e0a5704272a31c1c34f43a6469551..41acb5943da537e656ea08764aff641fff2812ef 100644 |
--- a/src/runtime/runtime.h |
+++ b/src/runtime/runtime.h |
@@ -30,26 +30,26 @@ namespace internal { |
// Entries have the form F(name, number of arguments, number of values): |
-#define FOR_EACH_INTRINSIC_ARRAY(F) \ |
- F(FinishArrayPrototypeSetup, 1, 1) \ |
- F(SpecialArrayFunctions, 0, 1) \ |
- F(TransitionElementsKind, 2, 1) \ |
- F(PushIfAbsent, 2, 1) \ |
- F(RemoveArrayHoles, 2, 1) \ |
- F(MoveArrayContents, 2, 1) \ |
- F(EstimateNumberOfElements, 1, 1) \ |
- F(GetArrayKeys, 2, 1) \ |
- F(ArrayConstructor, -1, 1) \ |
- F(ArrayConstructorWithSubclassing, -1, 1) \ |
- F(InternalArrayConstructor, -1, 1) \ |
- F(NormalizeElements, 1, 1) \ |
- F(GrowArrayElements, 2, 1) \ |
- F(HasComplexElements, 1, 1) \ |
- F(IsArray, 1, 1) \ |
- F(HasCachedArrayIndex, 1, 1) \ |
- F(GetCachedArrayIndex, 1, 1) \ |
- F(FixedArrayGet, 2, 1) \ |
- F(FixedArraySet, 3, 1) \ |
+#define FOR_EACH_INTRINSIC_ARRAY(F) \ |
+ F(FinishArrayPrototypeSetup, 1, 1) \ |
+ F(SpecialArrayFunctions, 0, 1) \ |
+ F(TransitionElementsKind, 2, 1) \ |
+ F(PushIfAbsent, 2, 1) \ |
+ F(RemoveArrayHoles, 2, 1) \ |
+ F(MoveArrayContents, 2, 1) \ |
+ F(EstimateNumberOfElements, 1, 1) \ |
+ F(GetArrayKeys, 2, 1) \ |
+ F(ArrayConstructor, -1, 1) \ |
+ F(NewArray, -1 /* >= 3 */, 1) \ |
+ F(InternalArrayConstructor, -1, 1) \ |
+ F(NormalizeElements, 1, 1) \ |
+ F(GrowArrayElements, 2, 1) \ |
+ F(HasComplexElements, 1, 1) \ |
+ F(IsArray, 1, 1) \ |
+ F(HasCachedArrayIndex, 1, 1) \ |
+ F(GetCachedArrayIndex, 1, 1) \ |
+ F(FixedArrayGet, 2, 1) \ |
+ F(FixedArraySet, 3, 1) \ |
F(FastOneByteArrayJoin, 2, 1) |