diff options
author | Alon Zakai <azakai@google.com> | 2020-12-17 12:39:21 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-17 12:39:21 -0800 |
commit | 2257f857069faa56335d2e24d7d6853c9501fcb7 (patch) | |
tree | ca67dc5b66b7d24759fc1043ed154b7f002a0188 /src/tools/wasm-opt.cpp | |
parent | a8ded16f56afd880a9a6459fe5ce55a8667d9b3e (diff) | |
download | binaryen-2257f857069faa56335d2e24d7d6853c9501fcb7.tar.gz binaryen-2257f857069faa56335d2e24d7d6853c9501fcb7.tar.bz2 binaryen-2257f857069faa56335d2e24d7d6853c9501fcb7.zip |
Refactor printing code so that printing Expressions always works (#3450)
This avoids needing to add include wasm-printing if a file doesn't already have it.
To achieve that, add the std::ostream hooks in wasm.h, and also use them
when possible, removing the need for the special WasmPrinter object.
Also stop printing in "full" (print types on each line) in error messages by default. The
user can still get that, as always, using BINARYEN_PRINT_FULL=1 in the env.
Diffstat (limited to 'src/tools/wasm-opt.cpp')
-rw-r--r-- | src/tools/wasm-opt.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/tools/wasm-opt.cpp b/src/tools/wasm-opt.cpp index 56a26ccfb..8884619fe 100644 --- a/src/tools/wasm-opt.cpp +++ b/src/tools/wasm-opt.cpp @@ -34,7 +34,6 @@ #include "wasm-binary.h" #include "wasm-interpreter.h" #include "wasm-io.h" -#include "wasm-printing.h" #include "wasm-s-parser.h" #include "wasm-validator.h" #include "wasm2c-wrapper.h" @@ -227,7 +226,7 @@ int main(int argc, const char* argv[]) { // to print would not be reached). if (std::find(options.passes.begin(), options.passes.end(), "print") != options.passes.end()) { - WasmPrinter::printModule(&wasm); + std::cout << wasm << '\n'; } Fatal() << message; }; @@ -279,7 +278,7 @@ int main(int argc, const char* argv[]) { reader.build(); if (options.passOptions.validate) { if (!WasmValidator().validate(wasm)) { - WasmPrinter::printModule(&wasm); + std::cout << wasm << '\n'; Fatal() << "error after translate-to-fuzz"; } } |