diff options
-rw-r--r-- | test/example/find_div0s.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/example/find_div0s.cpp b/test/example/find_div0s.cpp index dc2872edc..e7da03e02 100644 --- a/test/example/find_div0s.cpp +++ b/test/example/find_div0s.cpp @@ -32,7 +32,7 @@ int main() { // The parsed code has just one element, the module. Build the module // from that (and abort on any errors, but there won't be one here). - SExpressionWasmBuilder builder(module, *root[0], [&]() { abort(); }); + SExpressionWasmBuilder builder(module, *root[0], [&]() { abort(); }, false); // Print it out printWasm(&module, std::cout); |