diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-04-05 09:49:37 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-04-05 09:49:37 -0700 |
commit | 155223a2a0dd222817881dab85fa11166cc5bbb3 (patch) | |
tree | 7f10e15b941474c2b23c741e20ee2657c54026ca /src/wasm-dis.cpp | |
parent | b243bf42bf89bee18ece60fb0607cf1fb70ce702 (diff) | |
parent | ea448f35ada45647c200019cc34b4315cb16cdd9 (diff) | |
download | binaryen-155223a2a0dd222817881dab85fa11166cc5bbb3.tar.gz binaryen-155223a2a0dd222817881dab85fa11166cc5bbb3.tar.bz2 binaryen-155223a2a0dd222817881dab85fa11166cc5bbb3.zip |
Merge pull request #312 from WebAssembly/webidl
WebIDL bindings
Diffstat (limited to 'src/wasm-dis.cpp')
-rw-r--r-- | src/wasm-dis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm-dis.cpp b/src/wasm-dis.cpp index c3197a1a2..5e1e61682 100644 --- a/src/wasm-dis.cpp +++ b/src/wasm-dis.cpp @@ -50,7 +50,7 @@ int main(int argc, const char *argv[]) { if (options.debug) std::cerr << "Printing..." << std::endl; Output output(options.extra["output"], Flags::Text, options.debug ? Flags::Debug : Flags::Release); - printWasm(&wasm, output.getStream()); + WasmPrinter::printModule(&wasm, output.getStream()); output << '\n'; if (options.debug) std::cerr << "Done." << std::endl; |