diff options
Diffstat (limited to 'src/wasm2asm-main.cpp')
-rw-r--r-- | src/wasm2asm-main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wasm2asm-main.cpp b/src/wasm2asm-main.cpp index fa652cb47..95bdd0b08 100644 --- a/src/wasm2asm-main.cpp +++ b/src/wasm2asm-main.cpp @@ -18,7 +18,6 @@ // wasm2asm console tool // - #include "support/colors.h" #include "support/command-line.h" #include "support/file.h" @@ -52,7 +51,7 @@ int main(int argc, const char *argv[]) { if (options.debug) std::cerr << "w-parsing..." << std::endl; Module wasm; - SExpressionWasmBuilder builder(wasm, *root[0], [&]() { abort(); }); + SExpressionWasmBuilder builder(wasm, *root[0]); if (options.debug) std::cerr << "asming..." << std::endl; Wasm2AsmBuilder wasm2asm(options.debug); |