diff options
Diffstat (limited to 'src/wasm-type.h')
-rw-r--r-- | src/wasm-type.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h index 6b2618c8c..0b99fa53a 100644 --- a/src/wasm-type.h +++ b/src/wasm-type.h @@ -25,6 +25,7 @@ enum Type { i64, f32, f64, + v128, unreachable // none means no type, e.g. a block can have no return type. but // unreachable is different, as it can be "ignored" when doing // type checking across branches @@ -37,6 +38,7 @@ Type getReachableType(Type a, Type b); bool isConcreteType(Type type); bool isFloatType(Type type); bool isIntegerType(Type type); +bool isVectorType(Type type); } // namespace wasm |