diff options
Diffstat (limited to 'src/ir/literal-utils.h')
-rw-r--r-- | src/ir/literal-utils.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ir/literal-utils.h b/src/ir/literal-utils.h index c78fdc663..e00f05c52 100644 --- a/src/ir/literal-utils.h +++ b/src/ir/literal-utils.h @@ -29,6 +29,7 @@ inline Literal makeLiteralFromInt32(int32_t x, Type type) { case i64: return Literal(int64_t(x)); break; case f32: return Literal(float(x)); break; case f64: return Literal(double(x)); break; + case v128: assert(false && "v128 not implemented yet"); case none: case unreachable: WASM_UNREACHABLE(); } |