diff options
Diffstat (limited to 'src/wasm2asm-main.cpp')
-rw-r--r-- | src/wasm2asm-main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm2asm-main.cpp b/src/wasm2asm-main.cpp index 2234f2343..fa652cb47 100644 --- a/src/wasm2asm-main.cpp +++ b/src/wasm2asm-main.cpp @@ -51,7 +51,7 @@ int main(int argc, const char *argv[]) { Element &root = *parser.root; if (options.debug) std::cerr << "w-parsing..." << std::endl; - AllocatingModule wasm; + Module wasm; SExpressionWasmBuilder builder(wasm, *root[0], [&]() { abort(); }); if (options.debug) std::cerr << "asming..." << std::endl; |