diff options
Diffstat (limited to 'src/binary-reader-logging.cc')
-rw-r--r-- | src/binary-reader-logging.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/binary-reader-logging.cc b/src/binary-reader-logging.cc index 1ff0aea4..b1896c73 100644 --- a/src/binary-reader-logging.cc +++ b/src/binary-reader-logging.cc @@ -518,6 +518,14 @@ Result BinaryReaderLogging::OnGlobalSymbol(Index index, return reader_->OnGlobalSymbol(index, flags, name, global_index); } +Result BinaryReaderLogging::OnSectionSymbol(Index index, + uint32_t flags, + Index section_index) { + LOGF("OnSectionSymbol(flags: 0x%x index: %" PRIindex ")\n", flags, + section_index); + return reader_->OnSectionSymbol(index, flags, section_index); +} + Result BinaryReaderLogging::OnSegmentInfo(Index index, string_view name, uint32_t alignment, |