| Index: src/runtime/runtime.h
|
| diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
|
| index f7908acb2948c18f86b2718b00969c842e9bc5dc..bc70abc4bff97bcb741fb5f94bf1c593807bcc41 100644
|
| --- a/src/runtime/runtime.h
|
| +++ b/src/runtime/runtime.h
|
| @@ -619,20 +619,21 @@ namespace internal {
|
| F(WasmNumInterpretedCalls, 1, 1) \
|
| F(RedirectToWasmInterpreter, 2, 1)
|
|
|
| -#define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \
|
| - F(ArrayBufferGetByteLength, 1, 1) \
|
| - F(ArrayBufferNeuter, 1, 1) \
|
| - F(ArrayBufferViewGetByteLength, 1, 1) \
|
| - F(ArrayBufferViewGetByteOffset, 1, 1) \
|
| - F(TypedArrayGetLength, 1, 1) \
|
| - F(TypedArrayGetBuffer, 1, 1) \
|
| - F(TypedArraySetFastCases, 3, 1) \
|
| - F(TypedArraySortFast, 1, 1) \
|
| - F(TypedArrayMaxSizeInHeap, 0, 1) \
|
| - F(IsTypedArray, 1, 1) \
|
| - F(IsSharedTypedArray, 1, 1) \
|
| - F(IsSharedIntegerTypedArray, 1, 1) \
|
| - F(IsSharedInteger32TypedArray, 1, 1)
|
| +#define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \
|
| + F(ArrayBufferGetByteLength, 1, 1) \
|
| + F(ArrayBufferNeuter, 1, 1) \
|
| + F(ArrayBufferViewGetByteLength, 1, 1) \
|
| + F(ArrayBufferViewGetByteOffset, 1, 1) \
|
| + F(TypedArrayGetLength, 1, 1) \
|
| + F(TypedArrayGetBuffer, 1, 1) \
|
| + F(TypedArraySetFastCases, 3, 1) \
|
| + F(TypedArraySortFast, 1, 1) \
|
| + F(TypedArrayMaxSizeInHeap, 0, 1) \
|
| + F(IsTypedArray, 1, 1) \
|
| + F(IsSharedTypedArray, 1, 1) \
|
| + F(IsSharedIntegerTypedArray, 1, 1) \
|
| + F(IsSharedInteger32TypedArray, 1, 1) \
|
| + F(TypedArraySpeciesCreateByLength, 2, 1)
|
|
|
| #define FOR_EACH_INTRINSIC_WASM(F) \
|
| F(WasmGrowMemory, 1, 1) \
|
|
|