Removed dead InterruptFlag enum value.

Review URL: https://codereview.chromium.org/11446064

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@13171 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent d11558c9
...@@ -928,7 +928,6 @@ MaybeObject* Execution::HandleStackGuardInterrupt(Isolate* isolate) { ...@@ -928,7 +928,6 @@ MaybeObject* Execution::HandleStackGuardInterrupt(Isolate* isolate) {
isolate->counters()->stack_interrupts()->Increment(); isolate->counters()->stack_interrupts()->Increment();
isolate->counters()->runtime_profiler_ticks()->Increment(); isolate->counters()->runtime_profiler_ticks()->Increment();
stack_guard->Continue(RUNTIME_PROFILER_TICK);
isolate->runtime_profiler()->OptimizeNow(); isolate->runtime_profiler()->OptimizeNow();
#ifdef ENABLE_DEBUGGER_SUPPORT #ifdef ENABLE_DEBUGGER_SUPPORT
if (stack_guard->IsDebugBreak() || stack_guard->IsDebugCommand()) { if (stack_guard->IsDebugBreak() || stack_guard->IsDebugCommand()) {
......
...@@ -41,9 +41,8 @@ enum InterruptFlag { ...@@ -41,9 +41,8 @@ enum InterruptFlag {
DEBUGCOMMAND = 1 << 2, DEBUGCOMMAND = 1 << 2,
PREEMPT = 1 << 3, PREEMPT = 1 << 3,
TERMINATE = 1 << 4, TERMINATE = 1 << 4,
RUNTIME_PROFILER_TICK = 1 << 5, GC_REQUEST = 1 << 5,
GC_REQUEST = 1 << 6, CODE_READY = 1 << 6
CODE_READY = 1 << 7
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment