diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2021-08-30 09:42:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-30 16:42:45 +0000 |
commit | fffeac664f2e4433602ad3f34f649b078ba9e782 (patch) | |
tree | 149523b5a31271407aba297b9a599aa90295bbfe /src/wasm/wasm-io.cpp | |
parent | c0b48a61be60fb153933682e1f4369b8325bcb23 (diff) | |
download | binaryen-fffeac664f2e4433602ad3f34f649b078ba9e782.tar.gz binaryen-fffeac664f2e4433602ad3f34f649b078ba9e782.tar.bz2 binaryen-fffeac664f2e4433602ad3f34f649b078ba9e782.zip |
Use ModuleReader::readStdin for file "-" (#4114)
After #4106 we already treat the input file "-" as a shorthand for reading from
stdin at the file.cpp level. However, the "-" input was still treated as a
normal file name at the wasm-io.cpp file and as a result was always treated as
text input. This commit updates wasm-io.cpp to use the stdin code path
supporting both binary and text input for "-".
Fixes #4105 (again).
Diffstat (limited to 'src/wasm/wasm-io.cpp')
-rw-r--r-- | src/wasm/wasm-io.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wasm/wasm-io.cpp b/src/wasm/wasm-io.cpp index b8d67f4d5..b94fc8470 100644 --- a/src/wasm/wasm-io.cpp +++ b/src/wasm/wasm-io.cpp @@ -88,8 +88,8 @@ bool ModuleReader::isBinaryFile(std::string filename) { void ModuleReader::read(std::string filename, Module& wasm, std::string sourceMapFilename) { - // empty filename means read from stdin - if (!filename.size()) { + // empty filename or "-" means read from stdin + if (!filename.size() || filename == "-") { readStdin(wasm, sourceMapFilename); return; } |