diff options
author | Sam Clegg <sbc@chromium.org> | 2017-03-13 15:54:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-13 15:54:17 -0700 |
commit | a17662511d4e7c277f5add3b61453e7b708b2756 (patch) | |
tree | 1ca4ecbf6aeb512567c51042450d36c16b315551 /src/binary-reader-objdump.h | |
parent | 39e2c488f82ccd1bbc08059ea575b2d9deafe008 (diff) | |
download | wabt-a17662511d4e7c277f5add3b61453e7b708b2756.tar.gz wabt-a17662511d4e7c277f5add3b61453e7b708b2756.tar.bz2 wabt-a17662511d4e7c277f5add3b61453e7b708b2756.zip |
Update relocation encoding to latest "spec" (#352)
This brings wabt into line with what llvm is now
producing and what is soon that land in the
tool-conventions "spec" for static linking.
Adds 'index' and (options) 'addend' to relocations.
Define Reloc in common.h rather than once for each
tool.
Diffstat (limited to 'src/binary-reader-objdump.h')
-rw-r--r-- | src/binary-reader-objdump.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/binary-reader-objdump.h b/src/binary-reader-objdump.h index 884ac761..e3880484 100644 --- a/src/binary-reader-objdump.h +++ b/src/binary-reader-objdump.h @@ -26,10 +26,6 @@ namespace wabt { struct Module; struct ReadBinaryOptions; -struct Reloc { - RelocType type; - size_t offset; -}; WABT_DEFINE_VECTOR(reloc, Reloc); WABT_DEFINE_VECTOR(string_slice, StringSlice); |