| Index: src/runtime.h
|
| diff --git a/src/runtime.h b/src/runtime.h
|
| index 23d6d95fb50046840702040fb54fb260786f10f8..0a4f65583def9cbcd803b9ff8c7523b266951e06 100644
|
| --- a/src/runtime.h
|
| +++ b/src/runtime.h
|
| @@ -111,7 +111,6 @@ namespace internal {
|
| F(FlattenString, 1, 1) \
|
| F(TryMigrateInstance, 1, 1) \
|
| F(NotifyContextDisposed, 0, 1) \
|
| - F(MaxSmi, 0, 1) \
|
| \
|
| /* Array join support */ \
|
| F(PushIfAbsent, 2, 1) \
|
| @@ -367,7 +366,6 @@ namespace internal {
|
| F(ArrayBufferIsView, 1, 1) \
|
| F(ArrayBufferNeuter, 1, 1) \
|
| \
|
| - F(TypedArrayInitialize, 5, 1) \
|
| F(TypedArrayInitializeFromArrayLike, 4, 1) \
|
| F(TypedArrayGetBuffer, 1, 1) \
|
| F(TypedArrayGetByteLength, 1, 1) \
|
| @@ -375,7 +373,6 @@ namespace internal {
|
| F(TypedArrayGetLength, 1, 1) \
|
| F(TypedArraySetFastCases, 3, 1) \
|
| \
|
| - F(DataViewInitialize, 4, 1) \
|
| F(DataViewGetBuffer, 1, 1) \
|
| F(DataViewGetByteLength, 1, 1) \
|
| F(DataViewGetByteOffset, 1, 1) \
|
| @@ -660,7 +657,10 @@ namespace internal {
|
| F(NumberToString, 1, 1) \
|
| F(DoubleHi, 1, 1) \
|
| F(DoubleLo, 1, 1) \
|
| - F(ConstructDouble, 2, 1)
|
| + F(ConstructDouble, 2, 1) \
|
| + F(TypedArrayInitialize, 5, 1) \
|
| + F(DataViewInitialize, 4, 1) \
|
| + F(MaxSmi, 0, 1)
|
|
|
|
|
| //---------------------------------------------------------------------------
|
|
|