| Index: src/compiler/wasm-compiler.cc
|
| diff --git a/src/compiler/wasm-compiler.cc b/src/compiler/wasm-compiler.cc
|
| index eebe4d0f31735c98992b8f3dc5e1072d9ca3caa3..f8a26566372a7177d9de41fd0b8d822a5ac3756a 100644
|
| --- a/src/compiler/wasm-compiler.cc
|
| +++ b/src/compiler/wasm-compiler.cc
|
| @@ -2830,7 +2830,7 @@ Node* WasmGraphBuilder::MemBuffer(uint32_t offset) {
|
|
|
| Node* WasmGraphBuilder::CurrentMemoryPages() {
|
| // CurrentMemoryPages can not be called from asm.js.
|
| - DCHECK_EQ(wasm::kWasmOrigin, module_->module->get_origin());
|
| + DCHECK_EQ(wasm::kWasmOrigin, module_->module->origin());
|
| SetNeedsStackCheck();
|
| Node* call = BuildCallToRuntime(Runtime::kWasmMemorySize, nullptr, 0);
|
| Node* result = BuildChangeSmiToInt32(call);
|
| @@ -4010,7 +4010,7 @@ void WasmCompilationUnit::ExecuteCompilation() {
|
|
|
| job_.reset(Pipeline::NewWasmCompilationJob(
|
| info_.get(), jsgraph_, descriptor, source_positions,
|
| - &protected_instructions, module_env_->module->get_origin()));
|
| + &protected_instructions, module_env_->module->origin()));
|
| ok_ = job_->ExecuteJob() == CompilationJob::SUCCEEDED;
|
| // TODO(bradnelson): Improve histogram handling of size_t.
|
| if (is_sync_)
|
|
|