Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index 56acc86aa780702c8da66ed7ca6c82cbffb6b998..04eb009c71b79e53c678f60ce714ba574ef855d3 100644 |
--- a/src/bootstrapper.cc |
+++ b/src/bootstrapper.cc |
@@ -2007,7 +2007,9 @@ bool Genesis::InstallJSBuiltins(Handle<JSBuiltinsObject> builtins) { |
builtins->set_javascript_builtin(id, *function); |
Handle<SharedFunctionInfo> shared |
= Handle<SharedFunctionInfo>(function->shared()); |
- if (!EnsureCompiled(shared, CLEAR_EXCEPTION)) return false; |
+ if (!SharedFunctionInfo::EnsureCompiled(shared, CLEAR_EXCEPTION)) { |
+ return false; |
+ } |
// Set the code object on the function object. |
function->ReplaceCode(function->shared()->code()); |
builtins->set_javascript_builtin_code(id, shared->code()); |