diff options
Diffstat (limited to 'src/ir/abstract.h')
-rw-r--r-- | src/ir/abstract.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ir/abstract.h b/src/ir/abstract.h index 2cc016f97..e1c3b979a 100644 --- a/src/ir/abstract.h +++ b/src/ir/abstract.h @@ -81,7 +81,7 @@ inline UnaryOp getUnary(Type type, Op op) { assert(false && "v128 not implemented yet"); WASM_UNREACHABLE(); } - case except_ref: // there's no unary instructions for except_ref + case exnref: // there's no unary instructions for exnref case none: case unreachable: { return InvalidUnary; @@ -212,7 +212,7 @@ inline BinaryOp getBinary(Type type, Op op) { assert(false && "v128 not implemented yet"); WASM_UNREACHABLE(); } - case except_ref: // there's no binary instructions for except_ref + case exnref: // there's no binary instructions for exnref case none: case unreachable: { return InvalidBinary; |