diff options
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/wasm-ctor-eval.cpp | 2 | ||||
-rw-r--r-- | src/tools/wasm-merge.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/wasm-ctor-eval.cpp b/src/tools/wasm-ctor-eval.cpp index 4a7ca51b7..c0730877a 100644 --- a/src/tools/wasm-ctor-eval.cpp +++ b/src/tools/wasm-ctor-eval.cpp @@ -226,7 +226,7 @@ struct CtorEvalExternalInterface : EvallingModuleInstance::ExternalInterface { } else if (segment.offset->is<GetGlobal>()) { start = 0; } else { - WASM_UNREACHABLE(); // wasm spec only allows const and get_global there + WASM_UNREACHABLE(); // wasm spec only allows const and global.get there } auto end = start + segment.data.size(); if (start <= index && index < end) { diff --git a/src/tools/wasm-merge.cpp b/src/tools/wasm-merge.cpp index 52f682e16..e9ac6d649 100644 --- a/src/tools/wasm-merge.cpp +++ b/src/tools/wasm-merge.cpp @@ -500,7 +500,7 @@ struct InputMergeable : public ExpressionStackWalker<InputMergeable, Visitor<Inp } private: - // add an offset to a get_global. we look above, and if there is already an add, + // add an offset to a global.get. we look above, and if there is already an add, // we can add into it, avoiding creating a new node void addBump(Index bump) { if (expressionStack.size() >= 2) { |