summaryrefslogtreecommitdiff
path: root/chromium/v8/src/wasm/wasm-memory.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/src/wasm/wasm-memory.cc')
-rw-r--r--chromium/v8/src/wasm/wasm-memory.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/v8/src/wasm/wasm-memory.cc b/chromium/v8/src/wasm/wasm-memory.cc
index 2b5ae0052d9..4ddda981895 100644
--- a/chromium/v8/src/wasm/wasm-memory.cc
+++ b/chromium/v8/src/wasm/wasm-memory.cc
@@ -67,7 +67,7 @@ Handle<JSArrayBuffer> SetupArrayBuffer(Isolate* isolate, void* allocation_base,
allocation_length, backing_store, static_cast<int>(size),
shared);
buffer->set_is_neuterable(false);
- buffer->set_is_wasm_buffer(true);
+ buffer->set_is_growable(true);
buffer->set_has_guard_region(enable_guard_regions);
return buffer;
}