summaryrefslogtreecommitdiff
path: root/src/tools/wasm-metadce.cpp
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-04-24 16:59:26 -0700
committerGitHub <noreply@github.com>2024-04-24 23:59:26 +0000
commitaa931628d73a7ca69305760c161654aee8c20fe2 (patch)
treed46b277031858a564fa4e6ca3c0dca845d76dded /src/tools/wasm-metadce.cpp
parent403568091b42c6bfe38e46d73d8d10cd4c0747e9 (diff)
downloadbinaryen-aa931628d73a7ca69305760c161654aee8c20fe2.tar.gz
binaryen-aa931628d73a7ca69305760c161654aee8c20fe2.tar.bz2
binaryen-aa931628d73a7ca69305760c161654aee8c20fe2.zip
Do not add an extra null character when reading files (#6538)
The new wat parser currently considers itself to be at the end of the file whenever it cannot lex another token. This is not quite right, but fixing it causes parser errors because of the extra null character we were appending to files when we read them. This null character is not useful since we can already read files as `std::string`, which always has an implicit null character, so remove it. Clean up some users of `read_file` while we're at it.
Diffstat (limited to 'src/tools/wasm-metadce.cpp')
-rw-r--r--src/tools/wasm-metadce.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/tools/wasm-metadce.cpp b/src/tools/wasm-metadce.cpp
index cd8c8546a..1b429a723 100644
--- a/src/tools/wasm-metadce.cpp
+++ b/src/tools/wasm-metadce.cpp
@@ -485,8 +485,6 @@ int main(int argc, const char* argv[]) {
Fatal() << "no graph file provided.";
}
- auto input(read_file<std::string>(options.extra["infile"], Flags::Text));
-
Module wasm;
options.applyFeatures(wasm);