Version 3.21.3

Temporarily disabled optimization for StringWrappers to use native valueOf. (issue 2855)

Fixed crash on function declarations in eval inside non-trivial local scope. (issue 2594)

Rewrote SamplingCircularQueue. (issue 2814)

Fixed hidden properties on object with frozen prototype. (issue 2829)

Fix deoptimization bug. (Chromium issue 274164)

Stability improvements on all platforms.

git-svn-id: http://v8.googlecode.com/svn/trunk@16300 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
diff --git a/src/debug.cc b/src/debug.cc
index 990a9a5..bf208b2 100644
--- a/src/debug.cc
+++ b/src/debug.cc
@@ -2047,7 +2047,7 @@
   // 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 @@
               (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 &&