Reviewers: Jakob,
Description:
Removed dead InterruptFlag enum value.
Please review this at https://codereview.chromium.org/11446064/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files:
M src/execution.h
M src/execution.cc
Index: src/execution.cc
diff --git a/src/execution.cc b/src/execution.cc
index
0bb41fae7be8a138051935c19ea393f5038f45b7..e43ea65fc6420acb7ce882b062c34e574151bb44
100644
--- a/src/execution.cc
+++ b/src/execution.cc
@@ -928,7 +928,6 @@ MaybeObject*
Execution::HandleStackGuardInterrupt(Isolate* isolate) {
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()) {
Index: src/execution.h
diff --git a/src/execution.h b/src/execution.h
index
a20f72392803610260a0d6c2b617e13a2b24e813..448b8d68ac4889b97e60d41522a0fb1a90afbf5a
100644
--- a/src/execution.h
+++ b/src/execution.h
@@ -41,9 +41,8 @@ enum InterruptFlag {
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