diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-11-12 21:49:04 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-11-13 18:11:24 -0800 |
commit | 97b943c832dd3389b81c0896826977e0c447de28 (patch) | |
tree | 466affed0a003bdf5d787d17326c09c5edda7c99 /src/wasm.h | |
parent | 06a9c12ea045dfb9b1dd4f4ccf959ac715d4df8a (diff) | |
download | binaryen-97b943c832dd3389b81c0896826977e0c447de28.tar.gz binaryen-97b943c832dd3389b81c0896826977e0c447de28.tar.bz2 binaryen-97b943c832dd3389b81c0896826977e0c447de28.zip |
pass support
Diffstat (limited to 'src/wasm.h')
-rw-r--r-- | src/wasm.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wasm.h b/src/wasm.h index 6fc4ca5aa..2061eb5d5 100644 --- a/src/wasm.h +++ b/src/wasm.h @@ -58,7 +58,7 @@ enum WasmType { f64 }; -const char* printWasmType(WasmType type) { +inline const char* printWasmType(WasmType type) { switch (type) { case WasmType::none: return "none"; case WasmType::i32: return "i32"; @@ -68,7 +68,7 @@ const char* printWasmType(WasmType type) { } } -unsigned getWasmTypeSize(WasmType type) { +inline unsigned getWasmTypeSize(WasmType type) { switch (type) { case WasmType::none: abort(); case WasmType::i32: return 4; @@ -78,7 +78,7 @@ unsigned getWasmTypeSize(WasmType type) { } } -bool isWasmTypeFloat(WasmType type) { +inline bool isWasmTypeFloat(WasmType type) { switch (type) { case f32: case f64: return true; @@ -86,7 +86,7 @@ bool isWasmTypeFloat(WasmType type) { } } -WasmType getWasmType(unsigned size, bool float_) { +inline WasmType getWasmType(unsigned size, bool float_) { if (size < 4) return WasmType::i32; if (size == 4) return float_ ? WasmType::f32 : WasmType::i32; if (size == 8) return float_ ? WasmType::f64 : WasmType::i64; @@ -278,7 +278,7 @@ public: return _id == T()._id ? (T*)this : nullptr; } - std::ostream& print(std::ostream &o, unsigned indent); // avoid virtual here, for performance + inline std::ostream& print(std::ostream &o, unsigned indent); // avoid virtual here, for performance friend std::ostream& operator<<(std::ostream &o, Expression* expression) { return expression->print(o, 0); |