diff options
author | Max Graey <maxgraey@gmail.com> | 2022-07-29 07:15:35 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-29 04:15:35 +0000 |
commit | d02c260619e5d068b6893d4948de0487d0f1f66d (patch) | |
tree | beba5a15fb0ace5bd34a4135efecc54deb754bc6 /src/passes/Print.cpp | |
parent | 0cd9fb599fc5a44df7774d5f180d912ccab8c941 (diff) | |
download | binaryen-d02c260619e5d068b6893d4948de0487d0f1f66d.tar.gz binaryen-d02c260619e5d068b6893d4948de0487d0f1f66d.tar.bz2 binaryen-d02c260619e5d068b6893d4948de0487d0f1f66d.zip |
[JS Api] Reuse C-Api for emitText and emitStackIR (#4832)
Make the C API match the JS API and fix an old bug where extra newlines were emitted.
Diffstat (limited to 'src/passes/Print.cpp')
-rw-r--r-- | src/passes/Print.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index a6a0f7919..797ce46b1 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -3627,15 +3627,18 @@ printStackIR(StackIR* ir, std::ostream& o, Function* func) { default: WASM_UNREACHABLE("unexpeted op"); } - std::cout << '\n'; + o << '\n'; } assert(controlFlowDepth == 0); return o; } -std::ostream& printStackIR(std::ostream& o, Module* module) { +std::ostream& printStackIR(std::ostream& o, Module* module, bool optimize) { wasm::PassRunner runner(module); runner.add("generate-stack-ir"); + if (optimize) { + runner.add("optimize-stack-ir"); + } runner.add(std::make_unique<PrintStackIR>(&o)); runner.run(); return o; |