summaryrefslogtreecommitdiff
path: root/src/wasm2asm-main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm2asm-main.cpp')
-rw-r--r--src/wasm2asm-main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm2asm-main.cpp b/src/wasm2asm-main.cpp
index 2234f2343..d67dc7a88 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(); });
+ SExpressionWasmBuilder builder(wasm, *root[0], [&]() { abort(); }, false);
if (options.debug) std::cerr << "asming..." << std::endl;
Wasm2AsmBuilder wasm2asm(options.debug);