diff options
Diffstat (limited to 'src/binary-reader.cc')
-rw-r--r-- | src/binary-reader.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/binary-reader.cc b/src/binary-reader.cc index 42fb5029..e1a7a336 100644 --- a/src/binary-reader.cc +++ b/src/binary-reader.cc @@ -1745,6 +1745,11 @@ Result BinaryReader::ReadFunctionBody(Offset end_offset) { CALLBACK(OnOpcodeBare); break; + case Opcode::CallRef: + CALLBACK(OnCallRefExpr); + CALLBACK(OnOpcodeBare); + break; + default: return ReportUnexpectedOpcode(opcode); } |