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 /test/example/find_div0s.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 'test/example/find_div0s.cpp')
-rw-r--r-- | test/example/find_div0s.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/example/find_div0s.cpp b/test/example/find_div0s.cpp index 14eac95bb..24642c400 100644 --- a/test/example/find_div0s.cpp +++ b/test/example/find_div0s.cpp @@ -32,7 +32,7 @@ int main() { // The parsed code has just one element, the module. Build the module // from that (and abort on any errors, but there won't be one here). - SExpressionWasmBuilder builder(module, *root[0], [&]() { abort(); }, false); + SExpressionWasmBuilder builder(module, *root[0], [&]() { abort(); }); // Print it out WasmPrinter::printModule(&module, std::cout); |