diff options
Diffstat (limited to 'src/binary-writer.cc')
-rw-r--r-- | src/binary-writer.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/binary-writer.cc b/src/binary-writer.cc index 2cac2967..5638bd4e 100644 --- a/src/binary-writer.cc +++ b/src/binary-writer.cc @@ -1006,11 +1006,6 @@ void BinaryWriter::WriteExpr(const Func* func, const Expr* expr) { } WriteOpcode(stream_, Opcode::End); break; - case TryKind::Unwind: - WriteOpcode(stream_, Opcode::Unwind); - WriteExprList(func, try_expr->unwind); - WriteOpcode(stream_, Opcode::End); - break; case TryKind::Delegate: WriteOpcode(stream_, Opcode::Delegate); WriteU32Leb128(stream_, |