diff options
Diffstat (limited to 'src/binary-reader.cc')
-rw-r--r-- | src/binary-reader.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/binary-reader.cc b/src/binary-reader.cc index 495de306..9b365e87 100644 --- a/src/binary-reader.cc +++ b/src/binary-reader.cc @@ -1341,6 +1341,12 @@ Result BinaryReader::ReadFunctionBody(Offset end_offset) { break; } + case Opcode::CatchAll: { + CALLBACK(OnCatchAllExpr); + CALLBACK(OnOpcodeBare); + break; + } + case Opcode::Unwind: { CALLBACK0(OnUnwindExpr); CALLBACK0(OnOpcodeBare); |