Revision: 13171
Author:   [email protected]
Date:     Fri Dec  7 05:09:39 2012
Log:      Removed dead InterruptFlag enum value.

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

Modified:
 /branches/bleeding_edge/src/execution.cc
 /branches/bleeding_edge/src/execution.h

=======================================
--- /branches/bleeding_edge/src/execution.cc    Fri Dec  7 00:55:06 2012
+++ /branches/bleeding_edge/src/execution.cc    Fri Dec  7 05:09:39 2012
@@ -928,7 +928,6 @@

   isolate->counters()->stack_interrupts()->Increment();
   isolate->counters()->runtime_profiler_ticks()->Increment();
-  stack_guard->Continue(RUNTIME_PROFILER_TICK);
   isolate->runtime_profiler()->OptimizeNow();
 #ifdef ENABLE_DEBUGGER_SUPPORT
   if (stack_guard->IsDebugBreak() || stack_guard->IsDebugCommand()) {
=======================================
--- /branches/bleeding_edge/src/execution.h     Fri Dec  7 00:55:06 2012
+++ /branches/bleeding_edge/src/execution.h     Fri Dec  7 05:09:39 2012
@@ -41,9 +41,8 @@
   DEBUGCOMMAND = 1 << 2,
   PREEMPT = 1 << 3,
   TERMINATE = 1 << 4,
-  RUNTIME_PROFILER_TICK = 1 << 5,
-  GC_REQUEST = 1 << 6,
-  CODE_READY = 1 << 7
+  GC_REQUEST = 1 << 5,
+  CODE_READY = 1 << 6
 };


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to