| Index: src/debug.cc
 | 
| diff --git a/src/debug.cc b/src/debug.cc
 | 
| index 4966713baabf7644a48a8de9591699645fc33d8e..c0b788ac120c96b34f68ae9ad08f2ade09252979 100644
 | 
| --- a/src/debug.cc
 | 
| +++ b/src/debug.cc
 | 
| @@ -2047,7 +2047,7 @@ void Debug::PrepareForBreakPoints() {
 | 
|    // If preparing for the first break point make sure to deoptimize all
 | 
|    // functions as debugging does not work with optimized code.
 | 
|    if (!has_break_points_) {
 | 
| -    if (FLAG_parallel_recompilation) {
 | 
| +    if (FLAG_concurrent_recompilation) {
 | 
|        isolate_->optimizing_compiler_thread()->Flush();
 | 
|      }
 | 
|  
 | 
| @@ -2108,7 +2108,7 @@ void Debug::PrepareForBreakPoints() {
 | 
|                (function->IsMarkedForInstallingRecompiledCode() ||
 | 
|                 function->IsInRecompileQueue() ||
 | 
|                 function->IsMarkedForLazyRecompilation() ||
 | 
| -               function->IsMarkedForParallelRecompilation())) {
 | 
| +               function->IsMarkedForConcurrentRecompilation())) {
 | 
|              // Abort in-flight compilation.
 | 
|              Code* shared_code = function->shared()->code();
 | 
|              if (shared_code->kind() == Code::FUNCTION &&
 | 
| 
 |