summaryrefslogtreecommitdiff
path: root/src/wasm/wasm-io.cpp
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2021-08-30 09:42:45 -0700
committerGitHub <noreply@github.com>2021-08-30 16:42:45 +0000
commitfffeac664f2e4433602ad3f34f649b078ba9e782 (patch)
tree149523b5a31271407aba297b9a599aa90295bbfe /src/wasm/wasm-io.cpp
parentc0b48a61be60fb153933682e1f4369b8325bcb23 (diff)
downloadbinaryen-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.cpp4
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;
}