diff options
Diffstat (limited to 'src/wasm.h')
-rw-r--r-- | src/wasm.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/wasm.h b/src/wasm.h index dd15ea7ad..0b7a09a3c 100644 --- a/src/wasm.h +++ b/src/wasm.h @@ -615,7 +615,6 @@ public: TryId, ThrowId, RethrowId, - BrOnExnId, TupleMakeId, TupleExtractId, I31NewId, @@ -1292,21 +1291,6 @@ public: void finalize(); }; -class BrOnExn : public SpecificExpression<Expression::BrOnExnId> { -public: - BrOnExn() { type = Type::unreachable; } - BrOnExn(MixedArena& allocator) : BrOnExn() {} - - Name name; - Name event; - Expression* exnref; - // This is duplicate info of param types stored in Event, but this is required - // for us to know the type of the value sent to the target block. - Type sent; - - void finalize(); -}; - class TupleMake : public SpecificExpression<Expression::TupleMakeId> { public: TupleMake(MixedArena& allocator) : operands(allocator) {} |