summaryrefslogtreecommitdiff
path: root/src/wasm2asm.h
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-12-04 15:58:58 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-12-04 15:58:58 -0800
commit3a5fe5c481ba2b2424a97e58820d3b5285c34c1b (patch)
tree2a87f5148d7462c17ef258a8a301c719013a08f6 /src/wasm2asm.h
parent5b062214c3696cb2a9d1ac3a782b9380d08fbb64 (diff)
downloadbinaryen-3a5fe5c481ba2b2424a97e58820d3b5285c34c1b.tar.gz
binaryen-3a5fe5c481ba2b2424a97e58820d3b5285c34c1b.tar.bz2
binaryen-3a5fe5c481ba2b2424a97e58820d3b5285c34c1b.zip
get wasm2asm building
Diffstat (limited to 'src/wasm2asm.h')
-rw-r--r--src/wasm2asm.h2
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;
}