diff options
author | Alon Zakai <azakai@google.com> | 2019-03-20 15:52:19 -0700 |
---|---|---|
committer | Alon Zakai <azakai@google.com> | 2019-03-20 15:52:19 -0700 |
commit | 1690311955c5add86d634ecc47e937315b3b6c41 (patch) | |
tree | 429a0df2e87d41f46ed2408c90657b221294e22f /src/wasm-type.h | |
parent | fec88b85e44b49ac3273b0b7d4e06fba060df36f (diff) | |
parent | fe0b16aa222318588f3bfd84e549b4a1528be296 (diff) | |
download | binaryen-1690311955c5add86d634ecc47e937315b3b6c41.tar.gz binaryen-1690311955c5add86d634ecc47e937315b3b6c41.tar.bz2 binaryen-1690311955c5add86d634ecc47e937315b3b6c41.zip |
Merge remote-tracking branch 'origin/master' into nans
Diffstat (limited to 'src/wasm-type.h')
-rw-r--r-- | src/wasm-type.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h index 0b99fa53a..60253f6ab 100644 --- a/src/wasm-type.h +++ b/src/wasm-type.h @@ -17,6 +17,8 @@ #ifndef wasm_wasm_type_h #define wasm_wasm_type_h +#include "wasm-features.h" + namespace wasm { enum Type { @@ -33,6 +35,7 @@ enum Type { const char* printType(Type type); unsigned getTypeSize(Type type); +FeatureSet getFeatures(Type type); Type getType(unsigned size, bool float_); Type getReachableType(Type a, Type b); bool isConcreteType(Type type); |