diff options
Diffstat (limited to 'src/binary-writer.cc')
-rw-r--r-- | src/binary-writer.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/binary-writer.cc b/src/binary-writer.cc index 19443a44..a94eb147 100644 --- a/src/binary-writer.cc +++ b/src/binary-writer.cc @@ -1197,13 +1197,16 @@ void BinaryWriter::WriteRelocSection(const RelocSection* reloc_section) { case RelocType::MemoryAddressRelSLEB64: case RelocType::MemoryAddressI32: case RelocType::MemoryAddressI64: + case RelocType::MemoryAddressLocRelI32: case RelocType::FunctionOffsetI32: + case RelocType::FunctionOffsetI64: case RelocType::SectionOffsetI32: case RelocType::MemoryAddressTLSSLEB: - case RelocType::MemoryAddressTLSI32: + case RelocType::MemoryAddressTLSSLEB64: WriteU32Leb128(stream_, reloc.addend, "reloc addend"); break; case RelocType::FuncIndexLEB: + case RelocType::FuncIndexI32: case RelocType::TableIndexSLEB: case RelocType::TableIndexSLEB64: case RelocType::TableIndexI32: @@ -1212,6 +1215,7 @@ void BinaryWriter::WriteRelocSection(const RelocSection* reloc_section) { case RelocType::GlobalIndexLEB: case RelocType::TagIndexLEB: case RelocType::TableIndexRelSLEB: + case RelocType::TableIndexRelSLEB64: case RelocType::TableNumberLEB: break; default: |