| Index: src/wasm/wasm-module.cc
|
| diff --git a/src/wasm/wasm-module.cc b/src/wasm/wasm-module.cc
|
| index 27d9e63bc60cb00c4fbfea63c61680081f9dacfd..e836e6fc99330fc08e04408060963c7dea98731f 100644
|
| --- a/src/wasm/wasm-module.cc
|
| +++ b/src/wasm/wasm-module.cc
|
| @@ -408,8 +408,8 @@ void LinkImports(Isolate* isolate, std::vector<Handle<Code>>& functions,
|
|
|
| } // namespace
|
|
|
| -WasmModule::WasmModule()
|
| - : module_start(nullptr),
|
| +WasmModule::WasmModule(byte* module_start)
|
| + : module_start(module_start),
|
| module_end(nullptr),
|
| min_mem_pages(0),
|
| max_mem_pages(0),
|
|
|