summaryrefslogtreecommitdiff
path: root/src/wasm.h
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-11-03 17:28:46 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-11-03 17:28:46 -0800
commitd64776c06b70afac0a05c51f4538743cbb74a8c2 (patch)
tree0904d31e6bbb92b24227ea05237cea90f5980a22 /src/wasm.h
parent820c7c66829f4c64b7566f45163cdadf31480163 (diff)
downloadbinaryen-d64776c06b70afac0a05c51f4538743cbb74a8c2.tar.gz
binaryen-d64776c06b70afac0a05c51f4538743cbb74a8c2.tar.bz2
binaryen-d64776c06b70afac0a05c51f4538743cbb74a8c2.zip
main for shell
Diffstat (limited to 'src/wasm.h')
-rw-r--r--src/wasm.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/wasm.h b/src/wasm.h
index 06a9403d6..0fae2c719 100644
--- a/src/wasm.h
+++ b/src/wasm.h
@@ -784,14 +784,16 @@ public:
std::vector<Function*> functions;
size_t memorySize;
- Module() {}
+ Module() : memorySize(0) {}
friend std::ostream& operator<<(std::ostream &o, Module module) {
unsigned indent = 0;
printOpening(o, "module", true);
incIndent(o, indent);
doIndent(o, indent);
- printOpening(o, "memory") << " " << module.memorySize << " " << module.memorySize << ")\n";
+ if (module.memorySize) {
+ printOpening(o, "memory") << " " << module.memorySize << " " << module.memorySize << ")\n";
+ }
for (auto& curr : module.functionTypes) {
doIndent(o, indent);
curr.second->print(o, indent, true);