diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-12-04 15:58:58 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-12-04 15:58:58 -0800 |
commit | 3a5fe5c481ba2b2424a97e58820d3b5285c34c1b (patch) | |
tree | 2a87f5148d7462c17ef258a8a301c719013a08f6 /src/wasm2asm.h | |
parent | 5b062214c3696cb2a9d1ac3a782b9380d08fbb64 (diff) | |
download | binaryen-3a5fe5c481ba2b2424a97e58820d3b5285c34c1b.tar.gz binaryen-3a5fe5c481ba2b2424a97e58820d3b5285c34c1b.tar.bz2 binaryen-3a5fe5c481ba2b2424a97e58820d3b5285c34c1b.zip |
get wasm2asm building
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; } |