| Index: src/wasm/wasm-js.cc
|
| diff --git a/src/wasm/wasm-js.cc b/src/wasm/wasm-js.cc
|
| index c281bf5c1cd8bf277f600723ff5cf8731ccfaa97..b15a9854767791eee88afad4ccd7e8b2414f4d93 100644
|
| --- a/src/wasm/wasm-js.cc
|
| +++ b/src/wasm/wasm-js.cc
|
| @@ -451,7 +451,7 @@ void WebAssemblyMemory(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
| int initial = 0;
|
| if (!GetIntegerProperty(isolate, &thrower, context, descriptor,
|
| v8_str(isolate, "initial"), &initial, 0,
|
| - i::wasm::kV8MaxWasmMemoryPages)) {
|
| + i::FLAG_wasm_max_mem_pages)) {
|
| return;
|
| }
|
| // The descriptor's 'maximum'.
|
| @@ -650,7 +650,7 @@ void WebAssemblyMemoryGrow(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
| int64_t max_size64 = receiver->maximum_pages();
|
| if (max_size64 < 0 ||
|
| max_size64 > static_cast<int64_t>(i::wasm::kV8MaxWasmTableSize)) {
|
| - max_size64 = i::wasm::kV8MaxWasmMemoryPages;
|
| + max_size64 = i::FLAG_wasm_max_mem_pages;
|
| }
|
| i::Handle<i::JSArrayBuffer> old_buffer(receiver->buffer());
|
| uint32_t old_size =
|
|
|