diff options
author | Thomas Lively <tlively@google.com> | 2024-04-24 16:59:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-24 23:59:26 +0000 |
commit | aa931628d73a7ca69305760c161654aee8c20fe2 (patch) | |
tree | d46b277031858a564fa4e6ca3c0dca845d76dded /src/tools | |
parent | 403568091b42c6bfe38e46d73d8d10cd4c0747e9 (diff) | |
download | binaryen-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')
-rw-r--r-- | src/tools/wasm-ctor-eval.cpp | 2 | ||||
-rw-r--r-- | src/tools/wasm-metadce.cpp | 2 | ||||
-rw-r--r-- | src/tools/wasm2js.cpp | 3 |
3 files changed, 1 insertions, 6 deletions
diff --git a/src/tools/wasm-ctor-eval.cpp b/src/tools/wasm-ctor-eval.cpp index fe3d42d09..a806333af 100644 --- a/src/tools/wasm-ctor-eval.cpp +++ b/src/tools/wasm-ctor-eval.cpp @@ -1436,8 +1436,6 @@ int main(int argc, const char* argv[]) { }); options.parse(argc, argv); - auto input(read_file<std::string>(options.extra["infile"], Flags::Text)); - Module wasm; options.applyFeatures(wasm); 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); diff --git a/src/tools/wasm2js.cpp b/src/tools/wasm2js.cpp index 1c2606b6a..e5b949b90 100644 --- a/src/tools/wasm2js.cpp +++ b/src/tools/wasm2js.cpp @@ -976,8 +976,7 @@ int main(int argc, const char* argv[]) { ModuleReader reader; reader.read(input, wasm, ""); } else { - auto input( - read_file<std::vector<char>>(options.extra["infile"], Flags::Text)); + auto input(read_file<std::string>(options.extra["infile"], Flags::Text)); if (options.debug) { std::cerr << "s-parsing..." << std::endl; } |