Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index 6051447bcdf5e4dce001a0947c79d48890abf592..53d8e362d729826045819792ae69fb3f1c61c36f 100644 |
--- a/src/bootstrapper.cc |
+++ b/src/bootstrapper.cc |
@@ -1504,15 +1504,8 @@ bool Genesis::CompileScriptCached(Isolate* isolate, |
Handle<String> script_name = |
factory->NewStringFromUtf8(name).ToHandleChecked(); |
function_info = Compiler::CompileScript( |
- source, |
- script_name, |
- 0, |
- 0, |
- false, |
- top_context, |
- extension, |
- NULL, |
- NO_CACHED_DATA, |
+ source, script_name, 0, 0, false, top_context, extension, NULL, |
+ ScriptCompiler::kNoCompileOptions, |
use_runtime_context ? NATIVES_CODE : NOT_NATIVES_CODE); |
if (function_info.is_null()) return false; |
if (cache != NULL) cache->Add(name, function_info); |