| Index: src/runtime.h | 
| diff --git a/src/runtime.h b/src/runtime.h | 
| index 72a8037970116a92ca6f43a7197bd7b34199e016..756099b413fe6268dcd69a157165d223f841a372 100644 | 
| --- a/src/runtime.h | 
| +++ b/src/runtime.h | 
| @@ -162,7 +162,6 @@ namespace internal { | 
| F(RegExpExecMultiple, 4, 1) \ | 
| F(RegExpInitializeObject, 5, 1) \ | 
| F(RegExpConstructResult, 3, 1) \ | 
| -  F(RegExpCloneResult, 1, 1) \ | 
| \ | 
| /* JSON */ \ | 
| F(ParseJson, 1, 1) \ | 
| @@ -325,7 +324,6 @@ namespace internal { | 
| F(GetScopeCount, 2, 1) \ | 
| F(GetScopeDetails, 3, 1) \ | 
| F(DebugPrintScopes, 0, 1) \ | 
| -  F(GetCFrames, 1, 1) \ | 
| F(GetThreadCount, 1, 1) \ | 
| F(GetThreadDetails, 2, 1) \ | 
| F(SetDisableBreak, 1, 1) \ | 
| @@ -426,7 +424,7 @@ namespace internal { | 
| // ---------------------------------------------------------------------------- | 
| // INLINE_AND_RUNTIME_FUNCTION_LIST defines all inlined functions accessed | 
| // with a native call of the form %_name from within JS code that also have | 
| -  // a corresponding runtime function, that is called for slow cases. | 
| +// a corresponding runtime function, that is called for slow cases. | 
| // Entries have the form F(name, number of arguments, number of return values). | 
| #define INLINE_RUNTIME_FUNCTION_LIST(F) \ | 
| F(IsConstructCall, 0, 1)                                                   \ | 
| @@ -438,7 +436,6 @@ namespace internal { | 
| F(StringCompare, 2, 1)                                                     \ | 
| F(RegExpExec, 4, 1)                                                        \ | 
| F(RegExpConstructResult, 3, 1)                                             \ | 
| -  F(RegExpCloneResult, 1, 1)                                                 \ | 
| F(GetFromCache, 2, 1)                                                      \ | 
| F(NumberToString, 1, 1)                                                    \ | 
| F(SwapElements, 3, 1) | 
|  |