| Index: src/runtime/runtime.h
 | 
| diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
 | 
| index fc74c2167e7ea4c53ef117a1665a6db8f14e821b..5806e8225f02c1f2923f6f2ea3a52db3935caeef 100644
 | 
| --- a/src/runtime/runtime.h
 | 
| +++ b/src/runtime/runtime.h
 | 
| @@ -614,19 +614,20 @@ 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)         \
 | 
| +#define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \
 | 
| +  F(ArrayBufferGetByteLength, 1, 1)      \
 | 
| +  F(ArrayBufferNeuter, 1, 1)             \
 | 
| +  F(ArrayBufferViewGetByteLength, 1, 1)  \
 | 
| +  F(ArrayBufferViewGetByteOffset, 1, 1)  \
 | 
| +  F(ArrayBufferViewWasNeutered, 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_WASM(F)     \
 | 
| 
 |