diff options
Diffstat (limited to 'src/wasm-type.h')
-rw-r--r-- | src/wasm-type.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h index 60253f6ab..fcaea04ec 100644 --- a/src/wasm-type.h +++ b/src/wasm-type.h @@ -28,9 +28,10 @@ enum Type { 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 + // 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 + unreachable }; const char* printType(Type type); |