Index: src/compiler/wasm-compiler.h |
diff --git a/src/compiler/wasm-compiler.h b/src/compiler/wasm-compiler.h |
index 83d8883c5fbdc56b1e39d530ae98e298446f8b80..d4bcf1e1911d7103297b029abca8bc06144aaf46 100644 |
--- a/src/compiler/wasm-compiler.h |
+++ b/src/compiler/wasm-compiler.h |
@@ -176,8 +176,8 @@ class WasmGraphBuilder { |
// Operations that concern the linear memory. |
//----------------------------------------------------------------------- |
Node* MemSize(uint32_t offset); |
- Node* LoadGlobal(uint32_t index); |
- Node* StoreGlobal(uint32_t index, Node* val); |
+ Node* GetGlobal(uint32_t index); |
+ Node* SetGlobal(uint32_t index, Node* val); |
Node* LoadMem(wasm::LocalType type, MachineType memtype, Node* index, |
uint32_t offset, uint32_t alignment, |
wasm::WasmCodePosition position); |