diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-04-14 10:38:23 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-04-14 10:38:23 -0700 |
commit | 2887883029de293458344a5d564039074d93246e (patch) | |
tree | da72ae79c4bf7e6fcaa65edb2d1a693532cd78a7 /src/wasm2asm-main.cpp | |
parent | b3f9bb4c4a2f919ae0d73aa880609ad51abdc6b8 (diff) | |
download | binaryen-2887883029de293458344a5d564039074d93246e.tar.gz binaryen-2887883029de293458344a5d564039074d93246e.tar.bz2 binaryen-2887883029de293458344a5d564039074d93246e.zip |
remove excessive wasm-s-parser debug logging (#345)
Diffstat (limited to 'src/wasm2asm-main.cpp')
-rw-r--r-- | src/wasm2asm-main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm2asm-main.cpp b/src/wasm2asm-main.cpp index d67dc7a88..2234f2343 100644 --- a/src/wasm2asm-main.cpp +++ b/src/wasm2asm-main.cpp @@ -52,7 +52,7 @@ int main(int argc, const char *argv[]) { if (options.debug) std::cerr << "w-parsing..." << std::endl; AllocatingModule wasm; - SExpressionWasmBuilder builder(wasm, *root[0], [&]() { abort(); }, false); + SExpressionWasmBuilder builder(wasm, *root[0], [&]() { abort(); }); if (options.debug) std::cerr << "asming..." << std::endl; Wasm2AsmBuilder wasm2asm(options.debug); |