From d64776c06b70afac0a05c51f4538743cbb74a8c2 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Tue, 3 Nov 2015 17:28:46 -0800 Subject: main for shell --- src/wasm.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/wasm.h') 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 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); -- cgit v1.2.3