summaryrefslogtreecommitdiff
path: root/deps/v8/src/execution/interrupts-scope.cc
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/execution/interrupts-scope.cc')
-rw-r--r--deps/v8/src/execution/interrupts-scope.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/deps/v8/src/execution/interrupts-scope.cc b/deps/v8/src/execution/interrupts-scope.cc
index 7bf9821685..799b8a6ecd 100644
--- a/deps/v8/src/execution/interrupts-scope.cc
+++ b/deps/v8/src/execution/interrupts-scope.cc
@@ -9,15 +9,6 @@
namespace v8 {
namespace internal {
-InterruptsScope::InterruptsScope(Isolate* isolate, intptr_t intercept_mask,
- Mode mode)
- : stack_guard_(isolate->stack_guard()),
- intercept_mask_(intercept_mask),
- intercepted_flags_(0),
- mode_(mode) {
- if (mode_ != kNoop) stack_guard_->PushInterruptsScope(this);
-}
-
bool InterruptsScope::Intercept(StackGuard::InterruptFlag flag) {
InterruptsScope* last_postpone_scope = nullptr;
for (InterruptsScope* current = this; current; current = current->prev_) {