diff options
Diffstat (limited to 'src/binary-reader.h')
-rw-r--r-- | src/binary-reader.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/binary-reader.h b/src/binary-reader.h index 70a58ed0..35f2098d 100644 --- a/src/binary-reader.h +++ b/src/binary-reader.h @@ -250,6 +250,9 @@ class BinaryReaderDelegate { virtual Result EndFunctionBody(Index index) = 0; virtual Result EndCodeSection() = 0; + /* Simd instructions with Lane Imm operand*/ + virtual Result OnSimdLaneOpExpr(Opcode opcode, uint64_t value) = 0; + /* Elem section */ virtual Result BeginElemSection(Offset size) = 0; virtual Result OnElemSegmentCount(Index count) = 0; |