Index: src/runtime/runtime.h |
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h |
index a36de6436927844a5586856e77e2887a7127f768..fe2f25c0cbe994802fbbac94469f22be7bfcb5f4 100644 |
--- a/src/runtime/runtime.h |
+++ b/src/runtime/runtime.h |
@@ -31,27 +31,28 @@ 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(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(ArrayPush, -1, 1) \ |
- F(NormalizeElements, 1, 1) \ |
- F(GrowArrayElements, 2, 1) \ |
- F(HasComplexElements, 1, 1) \ |
- F(IsArray, 1, 1) \ |
- F(ArrayIsArray, 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(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(ArraySingleArgumentConstructor, -1, 1) \ |
+ F(ArrayPush, -1, 1) \ |
+ F(NormalizeElements, 1, 1) \ |
+ F(GrowArrayElements, 2, 1) \ |
+ F(HasComplexElements, 1, 1) \ |
+ F(IsArray, 1, 1) \ |
+ F(ArrayIsArray, 1, 1) \ |
+ F(HasCachedArrayIndex, 1, 1) \ |
+ F(GetCachedArrayIndex, 1, 1) \ |
+ F(FixedArrayGet, 2, 1) \ |
+ F(FixedArraySet, 3, 1) \ |
F(ArraySpeciesConstructor, 1, 1) |
#define FOR_EACH_INTRINSIC_ATOMICS(F) \ |