diff --git a/src/objects/bigint.cc b/src/objects/bigint.cc index 5794577aec..061d95e143 100644 --- a/src/objects/bigint.cc +++ b/src/objects/bigint.cc @@ -2191,10 +2191,6 @@ MaybeHandle MutableBigInt::ToStringGeneric(Isolate* isolate, // the raw characters pointer (as the string might have moved). chars = result->GetChars(no_gc); } - if (interrupt_check.InterruptRequested() && - isolate->stack_guard()->HandleInterrupts().IsException(isolate)) { - return MaybeHandle(); - } } } while (nonzero_digit > 0); last_digit = rest->digit(0);