Index: src/wasm/wasm-module.h |
diff --git a/src/wasm/wasm-module.h b/src/wasm/wasm-module.h |
index 7e7e5e11930d404c2a145744f6f4b388c7de977c..11ef65991d3de998cf61056587cc1c073bd801e7 100644 |
--- a/src/wasm/wasm-module.h |
+++ b/src/wasm/wasm-module.h |
@@ -179,6 +179,7 @@ struct V8_EXPORT_PRIVATE WasmModule { |
Zone* owned_zone; |
uint32_t min_mem_pages = 0; // minimum size of the memory in 64k pages |
uint32_t max_mem_pages = 0; // maximum size of the memory in 64k pages |
+ bool has_max_mem = false; // try if a maximum memory size exists |
bool has_memory = false; // true if the memory was defined or imported |
bool mem_export = false; // true if the memory is exported |
// TODO(wasm): reconcile start function index being an int with |