diff options
author | Sam Clegg <sbc@chromium.org> | 2018-05-29 09:46:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-29 09:46:08 -0700 |
commit | 71ce746f1be4290b8d20449ff35b852b5cc374d2 (patch) | |
tree | f389dbaf317cad58cb5380487fe46bb0983cd632 /src/binary-reader-logging.h | |
parent | 499b3a3dadf349be553ff2ecc495dcaaeddb4414 (diff) | |
download | wabt-71ce746f1be4290b8d20449ff35b852b5cc374d2.tar.gz wabt-71ce746f1be4290b8d20449ff35b852b5cc374d2.tar.bz2 wabt-71ce746f1be4290b8d20449ff35b852b5cc374d2.zip |
Add support for new relocation types used in DWARF sections (#846)
Diffstat (limited to 'src/binary-reader-logging.h')
-rw-r--r-- | src/binary-reader-logging.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/binary-reader-logging.h b/src/binary-reader-logging.h index 87b13052..26b38506 100644 --- a/src/binary-reader-logging.h +++ b/src/binary-reader-logging.h @@ -272,6 +272,9 @@ class BinaryReaderLogging : public BinaryReaderDelegate { uint32_t flags, string_view name, Index global_index) override; + Result OnSectionSymbol(Index index, + uint32_t flags, + Index section_index) override; Result OnSegmentInfoCount(Index count) override; Result OnSegmentInfo(Index index, string_view name, |