summaryrefslogtreecommitdiff
path: root/src/binary-writer.cc
diff options
context:
space:
mode:
authorSingleAccretion <62474226+SingleAccretion@users.noreply.github.com>2024-08-29 19:10:48 +0300
committerGitHub <noreply@github.com>2024-08-29 09:10:48 -0700
commite3b16dae4166b138bbd04bbe67281f4fa47fd4de (patch)
tree897220a41fef6bcc52ea758b6e610f5a39d95f21 /src/binary-writer.cc
parent1edeaf2948b4afd711e50ba2007ee44503cd80fe (diff)
downloadwabt-e3b16dae4166b138bbd04bbe67281f4fa47fd4de.tar.gz
wabt-e3b16dae4166b138bbd04bbe67281f4fa47fd4de.tar.bz2
wabt-e3b16dae4166b138bbd04bbe67281f4fa47fd4de.zip
Add missing relocation types (and delete a non-existent one) (#2457)
Diffstat (limited to 'src/binary-writer.cc')
-rw-r--r--src/binary-writer.cc6
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: