Revision: 16741
Author:   [email protected]
Date:     Mon Sep 16 16:09:07 2013 UTC
Log:      Fix compile error.

BUG=
[email protected]

Review URL: https://codereview.chromium.org/23651012
http://code.google.com/p/v8/source/detail?r=16741

Modified:
 /branches/bleeding_edge/src/execution.cc
 /branches/bleeding_edge/src/optimizing-compiler-thread.cc

=======================================
--- /branches/bleeding_edge/src/execution.cc    Mon Sep 16 15:34:46 2013 UTC
+++ /branches/bleeding_edge/src/execution.cc    Mon Sep 16 16:09:07 2013 UTC
@@ -952,7 +952,7 @@
   }
   if (stack_guard->IsInstallCodeRequest()) {
     ASSERT(FLAG_concurrent_recompilation);
-    isolate_->stack_guard()->Continue(INSTALL_CODE);
+    stack_guard->Continue(INSTALL_CODE);
     isolate->optimizing_compiler_thread()->InstallOptimizedFunctions();
   }
   isolate->runtime_profiler()->OptimizeNow();
=======================================
--- /branches/bleeding_edge/src/optimizing-compiler-thread.cc Mon Sep 16 15:34:46 2013 UTC +++ /branches/bleeding_edge/src/optimizing-compiler-thread.cc Mon Sep 16 16:09:07 2013 UTC
@@ -206,7 +206,7 @@
   OptimizingCompiler* compiler;
   while (true) {
     { LockGuard<Mutex> access_queue(&queue_mutex_);
-      if (!output_queue_.Dequeue(&optimizing_compiler)) break;
+      if (!output_queue_.Dequeue(&compiler)) break;
     }
     Compiler::InstallOptimizedCode(compiler);
   }

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to