| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index 2ecc57b5de96c83ab19bce37a8bdf012a94f7c91..e90461256661859610d1e130b7882c7202b00f83 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -9234,10 +9234,7 @@ void JSFunction::MarkForParallelRecompilation() {
|
| ASSERT(is_compiled() || GetIsolate()->DebuggerHasBreakPoints());
|
| ASSERT(!IsOptimized());
|
| ASSERT(shared()->allows_lazy_compilation() || code()->optimizable());
|
| - if (!FLAG_parallel_recompilation) {
|
| - JSFunction::MarkForLazyRecompilation();
|
| - return;
|
| - }
|
| + ASSERT(FLAG_parallel_recompilation);
|
| if (FLAG_trace_parallel_recompilation) {
|
| PrintF(" ** Marking ");
|
| PrintName();
|
|
|