summaryrefslogtreecommitdiff
path: root/src/wasm/wasm-s-parser.cpp
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2019-12-04 13:09:41 -0600
committerGitHub <noreply@github.com>2019-12-04 13:09:41 -0600
commit19d929cedb4dcf8b646dbbb58bfe59853b5d08e5 (patch)
treeea264ba70cba4f76af07ef0e2174cd6257c7abe9 /src/wasm/wasm-s-parser.cpp
parentf346478e1eb510d61c603eb6533d2c01f413e47a (diff)
downloadbinaryen-19d929cedb4dcf8b646dbbb58bfe59853b5d08e5.tar.gz
binaryen-19d929cedb4dcf8b646dbbb58bfe59853b5d08e5.tar.bz2
binaryen-19d929cedb4dcf8b646dbbb58bfe59853b5d08e5.zip
Convert to using DEBUG macros (#2497)
This means that debugging/tracing can now be enabled and controlled centrally without managing and passing state around the codebase.
Diffstat (limited to 'src/wasm/wasm-s-parser.cpp')
-rw-r--r--src/wasm/wasm-s-parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm/wasm-s-parser.cpp b/src/wasm/wasm-s-parser.cpp
index 3a761fd17..44b08f4a3 100644
--- a/src/wasm/wasm-s-parser.cpp
+++ b/src/wasm/wasm-s-parser.cpp
@@ -342,7 +342,7 @@ SExpressionWasmBuilder::SExpressionWasmBuilder(Module& wasm,
stringToBinary(str, size, data);
}
}
- WasmBinaryBuilder binaryBuilder(wasm, data, false);
+ WasmBinaryBuilder binaryBuilder(wasm, data);
binaryBuilder.read();
return;
}