From aa931628d73a7ca69305760c161654aee8c20fe2 Mon Sep 17 00:00:00 2001 From: Thomas Lively Date: Wed, 24 Apr 2024 16:59:26 -0700 Subject: 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. --- src/tools/wasm-metadce.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/tools/wasm-metadce.cpp') 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(options.extra["infile"], Flags::Text)); - Module wasm; options.applyFeatures(wasm); -- cgit v1.2.3