From 6770c02fc40c64043c4b10a518148b0fc53ef40a Mon Sep 17 00:00:00 2001 From: "svenpanne@chromium.org" Date: Fri, 7 Dec 2012 13:09:39 +0000 Subject: [PATCH] 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 --- src/execution.cc | 1 - src/execution.h | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/execution.cc b/src/execution.cc index 0bb41fa..e43ea65 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()) { diff --git a/src/execution.h b/src/execution.h index a20f723..448b8d6 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 }; -- 2.7.4