@@ -1569,13 +1569,11 @@ Result BinaryReaderInterp::OnTryTableExpr(Type sig_type,
15691569 // part of the frame.
15701570 u32 value_stack_height = validator_.type_stack_size () + local_count_;
15711571
1572- HandlerDesc desc = HandlerDesc{HandlerKind::Catch,
1573- Istream::kInvalidOffset ,
1574- Istream::kInvalidOffset ,
1575- {},
1576- {Istream::kInvalidOffset },
1577- value_stack_height,
1578- exn_stack_height};
1572+ HandlerDesc desc =
1573+ HandlerDesc{HandlerKind::Catch, Istream::kInvalidOffset ,
1574+ Istream::kInvalidOffset , {},
1575+ {Istream::kInvalidOffset }, value_stack_height,
1576+ exn_stack_height};
15791577
15801578 istream_.Emit (Opcode::Br);
15811579 auto offset = istream_.EmitFixupU32 ();
@@ -1597,7 +1595,8 @@ Result BinaryReaderInterp::OnTryTableExpr(Type sig_type,
15971595 desc.catch_all_ref = catch_.IsRef ();
15981596 desc.catch_all_offset = istream_.end ();
15991597 } else {
1600- desc.catches .push_back (CatchDesc{raw_catch.tag , istream_.end (), catch_.IsRef ()});
1598+ desc.catches .push_back (
1599+ CatchDesc{raw_catch.tag , istream_.end (), catch_.IsRef ()});
16011600 }
16021601 // we can't use GetBrDropKeepCount because we're not in a real block.
16031602 SharedValidator::Label* vlabel;
0 commit comments