diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-11-04 21:57:11 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-11-04 21:57:11 -0800 |
commit | 29677188899bb00ec7a06b85349ce9fc1b344094 (patch) | |
tree | 2fb40205c80928e5af0c47c9c3b04f04142f1be9 /src/wasm.h | |
parent | 04388516db30df7184bd4eb3ef36498af9b9d9c7 (diff) | |
download | binaryen-29677188899bb00ec7a06b85349ce9fc1b344094.tar.gz binaryen-29677188899bb00ec7a06b85349ce9fc1b344094.tar.bz2 binaryen-29677188899bb00ec7a06b85349ce9fc1b344094.zip |
more conversions
Diffstat (limited to 'src/wasm.h')
-rw-r--r-- | src/wasm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm.h b/src/wasm.h index 2c78182f8..db0abcba7 100644 --- a/src/wasm.h +++ b/src/wasm.h @@ -692,7 +692,7 @@ public: std::ostream& doPrint(std::ostream &o, unsigned indent) { o << '('; - prepareColor(o) << printWasmType(type); + prepareColor(o) << printWasmType(type) << '.'; switch (op) { case ExtendSInt32: o << "extend_s/i32"; break; case ExtendUInt32: o << "extend_u/i32"; break; |