| Index: src/runtime.h | 
| diff --git a/src/runtime.h b/src/runtime.h | 
| index f82963edac552ab38b78c41de18e492c6f51420d..e49fbcc2e29a0d2c85e798070b8d359c3866d027 100644 | 
| --- a/src/runtime.h | 
| +++ b/src/runtime.h | 
| @@ -219,6 +219,7 @@ namespace internal { | 
| F(NumberToExponential, 2, 1) \ | 
| F(NumberToPrecision, 2, 1) | 
|  | 
| + | 
| #define RUNTIME_FUNCTION_LIST_ALWAYS_2(F) \ | 
| /* Reflection */ \ | 
| F(FunctionSetInstanceClassName, 2, 1) \ | 
| @@ -347,6 +348,12 @@ namespace internal { | 
| F(ArrayBufferGetByteLength, 1, 1)\ | 
| F(ArrayBufferSliceImpl, 3, 1) \ | 
| \ | 
| +  F(TypedArrayInitialize, 5, 1) \ | 
| +  F(TypedArrayGetBuffer, 1, 1) \ | 
| +  F(TypedArrayGetByteLength, 1, 1) \ | 
| +  F(TypedArrayGetByteOffset, 1, 1) \ | 
| +  F(TypedArrayGetLength, 1, 1) \ | 
| +  \ | 
| /* Statements */ \ | 
| F(NewClosure, 3, 1) \ | 
| F(NewObject, 1, 1) \ | 
|  |