summaryrefslogtreecommitdiff
path: root/src/binary-reader.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/binary-reader.cc')
-rw-r--r--src/binary-reader.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/binary-reader.cc b/src/binary-reader.cc
index ee8eed49..0fc9f9a9 100644
--- a/src/binary-reader.cc
+++ b/src/binary-reader.cc
@@ -2036,14 +2036,17 @@ Result BinaryReader::ReadRelocSection(Offset section_size) {
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:
CHECK_RESULT(ReadS32Leb128(&addend, "addend"));
break;
case RelocType::FuncIndexLEB:
+ case RelocType::FuncIndexI32:
case RelocType::TableIndexSLEB:
case RelocType::TableIndexSLEB64:
case RelocType::TableIndexI32:
@@ -2053,6 +2056,7 @@ Result BinaryReader::ReadRelocSection(Offset section_size) {
case RelocType::GlobalIndexI32:
case RelocType::TagIndexLEB:
case RelocType::TableIndexRelSLEB:
+ case RelocType::TableIndexRelSLEB64:
case RelocType::TableNumberLEB:
break;