diff options
Diffstat (limited to 'src/ir/abstract.h')
-rw-r--r-- | src/ir/abstract.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ir/abstract.h b/src/ir/abstract.h index 2fe464c1d..1f15bafa1 100644 --- a/src/ir/abstract.h +++ b/src/ir/abstract.h @@ -62,6 +62,10 @@ inline UnaryOp getUnary(Type type, Op op) { } break; } + case v128: { + assert(false && "v128 not implemented yet"); + WASM_UNREACHABLE(); + } case none: case unreachable: { return InvalidUnary; @@ -140,6 +144,10 @@ inline BinaryOp getBinary(Type type, Op op) { } break; } + case v128: { + assert(false && "v128 not implemented yet"); + WASM_UNREACHABLE(); + } case none: case unreachable: { return InvalidBinary; |