diff options
Diffstat (limited to 'src/wasm2asm.h')
-rw-r--r-- | src/wasm2asm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm2asm.h b/src/wasm2asm.h index 1a4e5fce1..023ee2f18 100644 --- a/src/wasm2asm.h +++ b/src/wasm2asm.h @@ -327,7 +327,7 @@ Ref Wasm2AsmBuilder::processFunctionBody(Expression* curr, IString result) { Ref visit(Expression* curr, IString nextResult) { IString old = result; result = nextResult; - Ref ret = visit(curr); + Ref ret = WasmVisitor::visit(curr); result = old; // keep it consistent for the rest of this frame, which may call visit on multiple children return ret; } |