| Index: src/runtime/runtime-function.cc
 | 
| diff --git a/src/runtime/runtime-function.cc b/src/runtime/runtime-function.cc
 | 
| index ade955c1a028655f10f76d249c193e9bd08b023f..7e7f50342fa56907a6c9c6905d034411bc40e085 100644
 | 
| --- a/src/runtime/runtime-function.cc
 | 
| +++ b/src/runtime/runtime-function.cc
 | 
| @@ -311,14 +311,14 @@ RUNTIME_FUNCTION(Runtime_IsConstructor) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -RUNTIME_FUNCTION(Runtime_SetInlineBuiltinFlag) {
 | 
| +RUNTIME_FUNCTION(Runtime_SetForceInlineFlag) {
 | 
|    SealHandleScope shs(isolate);
 | 
|    RUNTIME_ASSERT(args.length() == 1);
 | 
|    CONVERT_ARG_HANDLE_CHECKED(Object, object, 0);
 | 
|  
 | 
|    if (object->IsJSFunction()) {
 | 
|      JSFunction* func = JSFunction::cast(*object);
 | 
| -    func->shared()->set_inline_builtin(true);
 | 
| +    func->shared()->set_force_inline(true);
 | 
|    }
 | 
|    return isolate->heap()->undefined_value();
 | 
|  }
 | 
| 
 |