Index: src/compiler.cc |
diff --git a/src/compiler.cc b/src/compiler.cc |
index 4250de18c9459dd5bb8ba387c7204b81f1618473..82a3e7c80312803dd99b0868cfc488c8622448e8 100644 |
--- a/src/compiler.cc |
+++ b/src/compiler.cc |
@@ -864,7 +864,10 @@ void Compiler::RecompileParallel(Handle<JSFunction> closure) { |
{ |
CompilationHandleScope handle_scope(*info); |
- if (InstallCodeFromOptimizedCodeMap(*info)) return; |
+ if (!FLAG_manual_parallel_recompilation && |
+ InstallCodeFromOptimizedCodeMap(*info)) { |
+ return; |
+ } |
if (ParserApi::Parse(*info, kNoParsingFlags)) { |
LanguageMode language_mode = info->function()->language_mode(); |