summaryrefslogtreecommitdiff
path: root/chromium/v8/src/snapshot/context-deserializer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/src/snapshot/context-deserializer.cc')
-rw-r--r--chromium/v8/src/snapshot/context-deserializer.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/chromium/v8/src/snapshot/context-deserializer.cc b/chromium/v8/src/snapshot/context-deserializer.cc
index 04756b5ffe8..ad109baccaf 100644
--- a/chromium/v8/src/snapshot/context-deserializer.cc
+++ b/chromium/v8/src/snapshot/context-deserializer.cc
@@ -62,9 +62,11 @@ void ContextDeserializer::SetupOffHeapArrayBufferBackingStores() {
uint32_t store_index = buffer->GetBackingStoreRefForDeserialization();
auto bs = backing_store(store_index);
buffer->AllocateExternalPointerEntries(isolate());
+ // TODO(v8:11111): Support RAB / GSAB.
+ CHECK(!buffer->is_resizable());
SharedFlag shared =
bs && bs->is_shared() ? SharedFlag::kShared : SharedFlag::kNotShared;
- buffer->Setup(shared, bs);
+ buffer->Setup(shared, ResizableFlag::kNotResizable, bs);
}
}