diff options
Diffstat (limited to 'src/binary-reader-logging.cc')
-rw-r--r-- | src/binary-reader-logging.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/binary-reader-logging.cc b/src/binary-reader-logging.cc index 27b4f18f..544666e4 100644 --- a/src/binary-reader-logging.cc +++ b/src/binary-reader-logging.cc @@ -358,6 +358,12 @@ Result BinaryReaderLogging::OnSimdLaneOpExpr(Opcode opcode, uint64_t value) { return reader_->OnSimdLaneOpExpr(opcode, value); } +Result BinaryReaderLogging::OnSimdShuffleOpExpr(Opcode opcode, v128 value) { + LOGF("OnSimdShuffleOpExpr (lane: 0x%08x %08x %08x %08x)\n", value.v[0], + value.v[1], value.v[2], value.v[3]); + return reader_->OnSimdShuffleOpExpr(opcode, value); +} + Result BinaryReaderLogging::OnDataSegmentData(Index index, const void* data, Address size) { |