Index: src/compiler/wasm-compiler.cc |
diff --git a/src/compiler/wasm-compiler.cc b/src/compiler/wasm-compiler.cc |
index d2ab271c183a68910e907c9a51ec17c4b5e823ff..31e7f205c48c2cc3f8fb897b6cc8718d7ee071c5 100644 |
--- a/src/compiler/wasm-compiler.cc |
+++ b/src/compiler/wasm-compiler.cc |
@@ -2921,7 +2921,7 @@ Node* WasmGraphBuilder::ChangeToRuntimeCall(Node* node, |
return ret; |
} |
-Node* WasmGraphBuilder::LoadGlobal(uint32_t index) { |
+Node* WasmGraphBuilder::GetGlobal(uint32_t index) { |
MachineType mem_type = |
wasm::WasmOpcodes::MachineTypeFor(module_->GetGlobalType(index)); |
Node* addr = jsgraph()->RelocatableIntPtrConstant( |
@@ -2935,7 +2935,7 @@ Node* WasmGraphBuilder::LoadGlobal(uint32_t index) { |
return node; |
} |
-Node* WasmGraphBuilder::StoreGlobal(uint32_t index, Node* val) { |
+Node* WasmGraphBuilder::SetGlobal(uint32_t index, Node* val) { |
MachineType mem_type = |
wasm::WasmOpcodes::MachineTypeFor(module_->GetGlobalType(index)); |
Node* addr = jsgraph()->RelocatableIntPtrConstant( |